Skip to content
Merged
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
15 changes: 4 additions & 11 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ jobs:

# Note: vulns found in scans do not currently block CI
- name: 'Grype scan APKs'
id: grype-scan
if: steps.file_check.outputs.exists == 'true'
run: |
set -x
Expand All @@ -101,22 +100,16 @@ jobs:
done

- name: Check sonames
id: soname
if: steps.file_check.outputs.exists == 'true'
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:7e693b6957ee6e3d66a9446dc2cd604dbf86f31fa4d8b9200fd8c7a742c5928c
with:
entrypoint: wolfictl
args: check so-name
run: |
wolfictl check so-name

- name: Check diff
id: diff
if: steps.file_check.outputs.exists == 'true'
# Let's not fail the whole job if this step fails as it is for improved UX rather than an enforced check
continue-on-error: true
uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:7e693b6957ee6e3d66a9446dc2cd604dbf86f31fa4d8b9200fd8c7a742c5928c
with:
entrypoint: wolfictl
args: check diff
run: |
wolfictl check diff

- name: Check for diff file
id: diff_file_check
Expand Down