diff --git a/.github/workflows/.ci-build.yml b/.github/workflows/.ci-build.yml index fa6f7d3..7e4f440 100644 --- a/.github/workflows/.ci-build.yml +++ b/.github/workflows/.ci-build.yml @@ -74,7 +74,7 @@ jobs: timeout-minutes: 600 # default is 360 container: - image: ghcr.io/wolfi-dev/sdk:latest@sha256:8965572f88c0b1e9f894a323391efd4719559688a4e0a5c9e863bec4dc7e70ba + image: ghcr.io/wolfi-dev/sdk:latest@sha256:1caf04b3d018df12829bdeec93fb1fcc320131d87787de6995847ad1e7aaa77e options: | --cap-add NET_ADMIN --cap-add SYS_ADMIN --device /dev/fuse --security-opt seccomp=unconfined --security-opt apparmor:unconfined diff --git a/advisories-validate/action.yaml b/advisories-validate/action.yaml index 5453dd2..1a1dfe4 100644 --- a/advisories-validate/action.yaml +++ b/advisories-validate/action.yaml @@ -37,7 +37,7 @@ inputs: runs: using: 'docker' - image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:8965572f88c0b1e9f894a323391efd4719559688a4e0a5c9e863bec4dc7e70ba + image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:1caf04b3d018df12829bdeec93fb1fcc320131d87787de6995847ad1e7aaa77e entrypoint: wolfictl args: - adv diff --git a/build-and-publish-secdb/action.yaml b/build-and-publish-secdb/action.yaml index ade1f1c..7d01107 100644 --- a/build-and-publish-secdb/action.yaml +++ b/build-and-publish-secdb/action.yaml @@ -61,7 +61,7 @@ runs: shell: bash - name: Build the security database - uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:8965572f88c0b1e9f894a323391efd4719559688a4e0a5c9e863bec4dc7e70ba + uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:1caf04b3d018df12829bdeec93fb1fcc320131d87787de6995847ad1e7aaa77e with: entrypoint: wolfictl args: ${{ inputs.wolfictl_args }} diff --git a/build-and-publish-yaml/action.yaml b/build-and-publish-yaml/action.yaml index 2e20fcd..6323401 100644 --- a/build-and-publish-yaml/action.yaml +++ b/build-and-publish-yaml/action.yaml @@ -56,7 +56,7 @@ runs: shell: bash - name: Build the security database - uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:8965572f88c0b1e9f894a323391efd4719559688a4e0a5c9e863bec4dc7e70ba + uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:1caf04b3d018df12829bdeec93fb1fcc320131d87787de6995847ad1e7aaa77e with: entrypoint: wolfictl args: ${{ inputs.wolfictl_args }} diff --git a/install-wolfictl/action.yaml b/install-wolfictl/action.yaml index 637f311..99f2dbb 100644 --- a/install-wolfictl/action.yaml +++ b/install-wolfictl/action.yaml @@ -10,6 +10,6 @@ runs: run: | # Copy wolfictl out of the wolfictl image and onto PATH TMP=$(mktemp -d) - docker run --rm -i -v $TMP:/out --entrypoint /bin/sh ghcr.io/wolfi-dev/sdk:latest@sha256:8965572f88c0b1e9f894a323391efd4719559688a4e0a5c9e863bec4dc7e70ba -c "cp /usr/bin/wolfictl /out" + docker run --rm -i -v $TMP:/out --entrypoint /bin/sh ghcr.io/wolfi-dev/sdk:latest@sha256:1caf04b3d018df12829bdeec93fb1fcc320131d87787de6995847ad1e7aaa77e -c "cp /usr/bin/wolfictl /out" echo "$TMP" >> $GITHUB_PATH shell: bash