Skip to content

Commit

Permalink
🐛 Make scan-metadata.sh executable before running it in the GitHub Ac…
Browse files Browse the repository at this point in the history
…tions workflow
  • Loading branch information
yezz123 committed Feb 6, 2025
1 parent 9ccdb3c commit 519e6e6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rust/scan/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ runs:
env:
DIR: ${{ inputs.dir }}
ASSET_PREFIX: ${{ inputs.asset_prefix }}
run: $GITHUB_ACTION_PATH/scripts/scan-metadata.sh
run: |
chmod +x $GITHUB_ACTION_PATH/scripts/scan-metadata.sh
# Set metadata for scan job
$GITHUB_ACTION_PATH/scripts/scan-metadata.sh
# Don't fail during report generation
- name: Vulnerability analysis of SBOM
Expand Down

0 comments on commit 519e6e6

Please sign in to comment.