We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4119b41 commit 17456e7Copy full SHA for 17456e7
security-actions/scan-docker-image/action.yml
@@ -50,10 +50,20 @@ runs:
50
using: composite
51
steps:
52
53
+ # Due to https://github.com/orgs/community/discussions/41927
54
+ - name: Symlink current Actions repo
55
+ working-directory: ${{ github.action_path }}
56
+ shell: bash
57
+ run: ln -fs $(realpath ../../) /home/runner/work/_actions/current
58
+
59
+ - run: |
60
+ ls -al /home/runner/work/_actions/current
61
62
63
# Reuse SCA action for docker-image
64
- name: Perform Docker SCA
65
id: sca
- uses: ./security-actions/sca
66
+ uses: ./../../_actions/current/security-actions/sca
67
with:
68
asset_prefix: ${{ inputs.asset_prefix }}
69
image: ${{ inputs.image }}
0 commit comments