Skip to content

Commit 7c873fe

Browse files
committed
fix: struggle with ghcr
1 parent 0a1456f commit 7c873fe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

action.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ runs:
4040
- name: Extract
4141
shell: bash
4242
run: |
43-
docker pull ghcr.io/blackheaven/haskell-security-action:master
44-
docker create --name dummy blackheaven/haskell-security-action:master
43+
export IMG=ghcr.io/blackheaven/haskell-security-action:master
44+
docker pull $IMG
45+
docker create --name dummy $IMG
4546
docker cp -L dummy:/bin/github-action-scan github-action-scan
4647
docker rm -f dummy
4748
- name: Run Haskell Security Action

0 commit comments

Comments
 (0)