Skip to content

Commit 639318d

Browse files
committed
docker fix
1 parent 2a619e6 commit 639318d

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/generate-augmented-sbom.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ jobs:
5252
5353
- name: Generate SBOM with Silkbomb
5454
run: |
55-
docker run --rm \
55+
docker run \
56+
--pull=always \
57+
--platform="linux/amd64" \
58+
--rm \
5659
-v "${PWD}:/pwd" \
5760
"${SILKBOMB_IMG}" \
5861
update \
@@ -62,7 +65,11 @@ jobs:
6265
6366
- name: Augment SBOM with Kondukto
6467
run: |
65-
docker run--pull=always --platform="linux/amd64" -it --rm -v "${PWD}:/pwd" \
68+
docker run \
69+
--pull=always \
70+
--platform="linux/amd64" \
71+
--rm \
72+
-v "${PWD}:/pwd" \
6673
-e "KONDUKTO_TOKEN=${KONDUKTO_TOKEN}" \
6774
"${SILKBOMB_IMG}" \
6875
augment \

0 commit comments

Comments
 (0)