chore(deps): update quay.io/redhat-appstudio/sbom-utility-scripts-image docker digest to 1a7db0f #2370
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate PR - Trusted Artifact variants | |
'on': | |
pull_request: | |
branches: [main] | |
jobs: | |
go: | |
name: Check Trusted Artifact variants | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Check Trusted Artifact variants | |
id: check | |
run: hack/generate-ta-tasks.sh | |
- name: Check missing Trusted Artifact variants | |
id: missing | |
run: hack/missing-ta-tasks.sh | |
- name: Attach patch | |
if: ${{ always() && steps.check.conclusion == 'failure' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Trusted artifacts patch | |
path: ./ta.patch |