We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a1456f commit 7c873feCopy full SHA for 7c873fe
action.yaml
@@ -40,8 +40,9 @@ runs:
40
- name: Extract
41
shell: bash
42
run: |
43
- docker pull ghcr.io/blackheaven/haskell-security-action:master
44
- docker create --name dummy blackheaven/haskell-security-action:master
+ export IMG=ghcr.io/blackheaven/haskell-security-action:master
+ docker pull $IMG
45
+ docker create --name dummy $IMG
46
docker cp -L dummy:/bin/github-action-scan github-action-scan
47
docker rm -f dummy
48
- name: Run Haskell Security Action
0 commit comments