Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update images digests #39

Merged
merged 1 commit into from Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/.ci-build.yml
Expand Up @@ -74,7 +74,7 @@ jobs:
timeout-minutes: 600 # default is 360

container:
image: ghcr.io/wolfi-dev/sdk:latest@sha256:3014b6aec22ee9434659bfe7cb8dfcd8f61bce1a1f1c92f836be8daa0aa96088
image: ghcr.io/wolfi-dev/sdk:latest@sha256:f0c5a904d3a970424329546433348a3607252c8cf629ca9f7a2bff4065ac03c7
options: |
--cap-add NET_ADMIN --cap-add SYS_ADMIN --device /dev/fuse --security-opt seccomp=unconfined --security-opt apparmor:unconfined

Expand Down
2 changes: 1 addition & 1 deletion advisories-validate/action.yaml
Expand Up @@ -37,7 +37,7 @@ inputs:

runs:
using: 'docker'
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:3014b6aec22ee9434659bfe7cb8dfcd8f61bce1a1f1c92f836be8daa0aa96088
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:f0c5a904d3a970424329546433348a3607252c8cf629ca9f7a2bff4065ac03c7
entrypoint: wolfictl
args:
- adv
Expand Down
2 changes: 1 addition & 1 deletion build-and-publish-secdb/action.yaml
Expand Up @@ -61,7 +61,7 @@ runs:
shell: bash

- name: Build the security database
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:3014b6aec22ee9434659bfe7cb8dfcd8f61bce1a1f1c92f836be8daa0aa96088
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:f0c5a904d3a970424329546433348a3607252c8cf629ca9f7a2bff4065ac03c7
with:
entrypoint: wolfictl
args: ${{ inputs.wolfictl_args }}
Expand Down
2 changes: 1 addition & 1 deletion build-and-publish-yaml/action.yaml
Expand Up @@ -56,7 +56,7 @@ runs:
shell: bash

- name: Build the security database
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:3014b6aec22ee9434659bfe7cb8dfcd8f61bce1a1f1c92f836be8daa0aa96088
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:f0c5a904d3a970424329546433348a3607252c8cf629ca9f7a2bff4065ac03c7
with:
entrypoint: wolfictl
args: ${{ inputs.wolfictl_args }}
Expand Down
2 changes: 1 addition & 1 deletion install-wolfictl/action.yaml
Expand Up @@ -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:3014b6aec22ee9434659bfe7cb8dfcd8f61bce1a1f1c92f836be8daa0aa96088 -c "cp /usr/bin/wolfictl /out"
docker run --rm -i -v $TMP:/out --entrypoint /bin/sh ghcr.io/wolfi-dev/sdk:latest@sha256:f0c5a904d3a970424329546433348a3607252c8cf629ca9f7a2bff4065ac03c7 -c "cp /usr/bin/wolfictl /out"
echo "$TMP" >> $GITHUB_PATH
shell: bash