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 #54

Merged
merged 1 commit into from Mar 27, 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:10ee9c5120c2b7e6ac80f82f7883aeb92267df4b265e3a9242cb7a6a94835fa5
image: ghcr.io/wolfi-dev/sdk:latest@sha256:931af5f52f9079fd5cd55a0a8caa23eec2f874ecfddd47ac475c1e0f47aae306
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:10ee9c5120c2b7e6ac80f82f7883aeb92267df4b265e3a9242cb7a6a94835fa5
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:931af5f52f9079fd5cd55a0a8caa23eec2f874ecfddd47ac475c1e0f47aae306
entrypoint: wolfictl
args:
- adv
Expand Down
2 changes: 1 addition & 1 deletion build-and-publish-osv/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:10ee9c5120c2b7e6ac80f82f7883aeb92267df4b265e3a9242cb7a6a94835fa5
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:931af5f52f9079fd5cd55a0a8caa23eec2f874ecfddd47ac475c1e0f47aae306
with:
entrypoint: wolfictl
args: advisory export --format osv -o osv.yaml ${{ inputs.wolfictl_args }}
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:10ee9c5120c2b7e6ac80f82f7883aeb92267df4b265e3a9242cb7a6a94835fa5
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:931af5f52f9079fd5cd55a0a8caa23eec2f874ecfddd47ac475c1e0f47aae306
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:10ee9c5120c2b7e6ac80f82f7883aeb92267df4b265e3a9242cb7a6a94835fa5
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:931af5f52f9079fd5cd55a0a8caa23eec2f874ecfddd47ac475c1e0f47aae306
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:10ee9c5120c2b7e6ac80f82f7883aeb92267df4b265e3a9242cb7a6a94835fa5 -c "cp /usr/bin/wolfictl /out"
docker run --rm -i -v $TMP:/out --entrypoint /bin/sh ghcr.io/wolfi-dev/sdk:latest@sha256:931af5f52f9079fd5cd55a0a8caa23eec2f874ecfddd47ac475c1e0f47aae306 -c "cp /usr/bin/wolfictl /out"
echo "$TMP" >> $GITHUB_PATH
shell: bash
2 changes: 1 addition & 1 deletion wolfictl-check-updates/action.yaml
Expand Up @@ -19,7 +19,7 @@ runs:
using: "composite"
steps:
- name: wolfictl-check-updates
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:d25ddf556b64e3551da2c85c98237e0c91f80df6b272dc17463c74f0d9bae366
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:f6c480318467cb2fed7eaec87e4883899178f2ba032e78be0dabb76284d9fbdb
with:
entrypoint: wolfictl
args: check update ${{ inputs.changed_files }}
Expand Down
4 changes: 2 additions & 2 deletions wolfictl-lint/action.yaml
Expand Up @@ -21,15 +21,15 @@ runs:
- name: Lint
if: ${{ inputs.run_wolfictl_lint == 'true' }}
id: lint
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:d25ddf556b64e3551da2c85c98237e0c91f80df6b272dc17463c74f0d9bae366
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:f6c480318467cb2fed7eaec87e4883899178f2ba032e78be0dabb76284d9fbdb
with:
entrypoint: wolfictl
args: lint --skip-rule no-makefile-entry-for-package

- name: Enforce YAML formatting
if: ${{ inputs.run_wolfictl_lint_yam == 'true' }}
id: lint-yaml
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:d25ddf556b64e3551da2c85c98237e0c91f80df6b272dc17463c74f0d9bae366
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:f6c480318467cb2fed7eaec87e4883899178f2ba032e78be0dabb76284d9fbdb
with:
entrypoint: wolfictl
args: lint yam
2 changes: 1 addition & 1 deletion wolfictl-update-gh/action.yaml
Expand Up @@ -27,7 +27,7 @@ inputs:

runs:
using: 'docker'
image: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:d25ddf556b64e3551da2c85c98237e0c91f80df6b272dc17463c74f0d9bae366
image: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:f6c480318467cb2fed7eaec87e4883899178f2ba032e78be0dabb76284d9fbdb
entrypoint: wolfictl
args:
- update
Expand Down
2 changes: 1 addition & 1 deletion wolfictl-update-rm/action.yaml
Expand Up @@ -32,7 +32,7 @@ inputs:

runs:
using: 'docker'
image: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:d25ddf556b64e3551da2c85c98237e0c91f80df6b272dc17463c74f0d9bae366
image: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:f6c480318467cb2fed7eaec87e4883899178f2ba032e78be0dabb76284d9fbdb
entrypoint: wolfictl
args:
- update
Expand Down