Skip to content

Commit

Permalink
fix: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rkpattnaik780 committed Jan 12, 2024
1 parent 4efc18f commit 276922c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sec-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
git checkout -b ${{ env.SEC_SCAN_BRANCH }}
git push --set-upstream origin ${{ env.SEC_SCAN_BRANCH }}
update-n-version:
check-vulnerabilities:
needs: [initialize]
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -106,10 +106,10 @@ jobs:
- name: execute py script # run trial.py
env:
HASH_N: ${{ steps.hash-n.outputs.HASH_N }}
RELEASE_VERSION_N: 2023b
RELEASE_VERSION_N: ${{ env.RELEASE_VERSION_N }}

HASH_N_1: ${{ steps.hash-n-1.outputs.HASH_N_1 }}
RELEASE_VERSION_N_1: 2023a
RELEASE_VERSION_N_1: ${{ env.RELEASE_VERSION_N_1 }}

LATEST_MAIN_COMMIT: ${{ steps.hash-main.outputs.LATEST_MAIN_COMMIT }}
run: make scan-image-vulnerabilities
Expand All @@ -120,7 +120,7 @@ jobs:
# Creates the Pull Request
open-pull-request:
needs: [update-n-version]
needs: [check-vulnerabilities]
runs-on: ubuntu-latest
permissions:
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -473,4 +473,4 @@ refresh-pipfilelock-files:
# For running manually, set the required environment variables
.PHONY: scan-image-vulnerabilities
scan-image-vulnerabilities:
python ci/security-scan/quay_security_analysis.py
python ci/security-scan/quay_security_analysis.py

0 comments on commit 276922c

Please sign in to comment.