Skip to content

Commit 519e6e6

Browse files
committed
🐛 Make scan-metadata.sh executable before running it in the GitHub Actions workflow
1 parent 9ccdb3c commit 519e6e6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rust/scan/action.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ runs:
4545
env:
4646
DIR: ${{ inputs.dir }}
4747
ASSET_PREFIX: ${{ inputs.asset_prefix }}
48-
run: $GITHUB_ACTION_PATH/scripts/scan-metadata.sh
48+
run: |
49+
chmod +x $GITHUB_ACTION_PATH/scripts/scan-metadata.sh
50+
51+
# Set metadata for scan job
52+
$GITHUB_ACTION_PATH/scripts/scan-metadata.sh
4953
5054
# Don't fail during report generation
5155
- name: Vulnerability analysis of SBOM

0 commit comments

Comments
 (0)