Skip to content

Commit 9af07a0

Browse files
Snyk Security workflow enhancements
1 parent 84b571a commit 9af07a0

File tree

2 files changed

+13
-40
lines changed

2 files changed

+13
-40
lines changed

.github/workflows/release.yaml

+13-24
Original file line numberDiff line numberDiff line change
@@ -88,31 +88,20 @@ jobs:
8888
GITHUB_TOKEN: ${{ secrets.CODEFLARE_MACHINE_ACCOUNT_TOKEN }}
8989
shell: bash
9090

91-
- name: Append tag to Snyk monitoring list
91+
- name: Install Snyk CLI and setup monitoring for new release tag
92+
env:
93+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
94+
SNYK_ORG: ${{ secrets.SNYK_ORG }}
9295
run: |
93-
sed -i 's/list_of_released_tags=(/list_of_released_tags=("v${{ github.event.inputs.release-version }}", /' .github/workflows/snyk-security.yaml
96+
echo "Installing Snyk CLI"
97+
npm install -g snyk
9498
95-
- name: Commit and push changes
96-
run: |
97-
git config --global user.email "${{ vars.CODEFLARE_MACHINE_EMAIL }}"
98-
git config --global user.name "${{ vars.CODEFLARE_MACHINE_NAME }}"
99-
git checkout -b $PR_BRANCH_NAME
100-
git commit -am "Update snyk-security.yaml"
101-
git push --set-upstream origin "$PR_BRANCH_NAME"
99+
echo "Fetching tags"
100+
git fetch origin 'refs/tags/*:refs/tags/*'
102101
103-
- name: Create Pull Request
104-
run: |
105-
gh pr create \
106-
--title "$pr_title" \
107-
--body "$pr_body" \
108-
--head ${{ env.PR_BRANCH_NAME }} \
109-
--base main \
110-
--label "lgtm" \
111-
--label "approved"
112-
env:
113-
GITHUB_TOKEN: ${{ secrets.GH_CLI_TOKEN }}
114-
pr_title: "[CodeFlare-Machine] Append tag v${{ github.event.inputs.release-version }} to Snyk monitoring list"
115-
pr_body: |
116-
:rocket: This is an automated Pull Request generated by [release.yaml](https://github.com/project-codeflare/codeflare-sdk/blob/main/.github/workflows/release.yaml) workflow.
102+
echo "Authenticating with Snyk"
103+
snyk auth ${SNYK_TOKEN}
117104
118-
This PR appends to the list of tags that Snyk will be monitoring.
105+
echo "Scanning project: codeflare-sdk/v${{ github.event.inputs.release-version }}"
106+
git checkout v${{ github.event.inputs.release-version }}
107+
snyk monitor --all-projects --exclude=requirements.txt --org=${SNYK_ORG} --target-reference="$(git describe --tags)"

.github/workflows/snyk-security.yaml

-16
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@ jobs:
1111
- name: Checkout code
1212
uses: actions/checkout@v4
1313

14-
- name: Setup Node.js to cache dependencies
15-
uses: actions/setup-node@v4
16-
with:
17-
node-version: 20
18-
cache: 'npm'
19-
2014
- name: Install Snyk CLI
2115
run: npm install -g snyk
2216

@@ -33,13 +27,3 @@ jobs:
3327
3428
echo "Scanning project: codeflare-sdk/main"
3529
snyk monitor --all-projects --exclude=requirements.txt --org=${SNYK_ORG} --target-reference="main"
36-
37-
# This list is based off RHOAI Supported versions: https://access.redhat.com/support/policy/updates/rhoai-sm/lifecycle
38-
# Compared to the tags in the ImageStream annotations: https://github.com/red-hat-data-services/notebooks/blob/rhoai-2.8/manifests/base/jupyter-datascience-notebook-imagestream.yaml
39-
# Loop through the list of released tags and scan each project
40-
list_of_released_tags=("v0.22.0" "v0.21.1" "v0.19.1", "v0.16.4", "vv0.14.1")
41-
for project in "${list_of_released_tags[@]}"; do
42-
echo "Scanning project: codeflare-sdk/$project"
43-
git checkout $project
44-
snyk monitor --all-projects --exclude=requirements.txt --org=${SNYK_ORG} --target-reference="$(git describe --tags)"
45-
done

0 commit comments

Comments
 (0)