Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/.ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
timeout-minutes: 600 # default is 360

container:
image: ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
image: ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ inputs:

runs:
using: 'docker'
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
entrypoint: wolfictl
args:
- adv
Expand Down
2 changes: 1 addition & 1 deletion build-and-publish-osv/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ runs:
shell: bash

- name: Build the security database
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
with:
entrypoint: wolfictl
args: advisory osv -o osv ${{ inputs.wolfictl_args }}
Expand Down
2 changes: 1 addition & 1 deletion build-and-publish-secdb/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
shell: bash

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

- name: Build the security database
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
with:
entrypoint: wolfictl
args: ${{ inputs.wolfictl_args }}
Expand Down
2 changes: 1 addition & 1 deletion install-wolfictl/action.yaml
Original file line number Diff line number Diff line change
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:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971 -c "cp /usr/bin/wolfictl /out"
docker run --rm -i -v $TMP:/out --entrypoint /bin/sh ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7 -c "cp /usr/bin/wolfictl /out"
echo "$TMP" >> $GITHUB_PATH
shell: bash
2 changes: 1 addition & 1 deletion wolfictl-check-updates/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
using: "composite"
steps:
- name: wolfictl-check-updates
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
with:
entrypoint: wolfictl
args: check update ${{ inputs.changed_files }}
Expand Down
4 changes: 2 additions & 2 deletions wolfictl-lint/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ runs:
- name: Lint
if: ${{ inputs.run_wolfictl_lint == 'true' }}
id: lint
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
uses: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
with:
entrypoint: wolfictl
args: --log-level info lint --skip-rule no-makefile-entry-for-package ${{ inputs.args }}

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

runs:
using: 'docker'
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
entrypoint: wolfictl
args:
- update
Expand Down
2 changes: 1 addition & 1 deletion wolfictl-update-rm/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ inputs:

runs:
using: 'docker'
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:7e7af7997a87f3d490cc5b4e8d1f96b0635e716317cfdc6e5a42bc06151d8971
image: docker://ghcr.io/wolfi-dev/sdk:latest@sha256:81d5919a99240d202126d2cb6088d9dad04d36a4bb26da04106062f58c899ec7
entrypoint: wolfictl
args:
- update
Expand Down