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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
SBOM=$(find build/dfetch-package -name '*.cdx.json' -maxdepth 1 | head -1)
echo "path=$SBOM" >> "$GITHUB_OUTPUT"
- name: Attest binary packages with SBOM
uses: actions/attest@a1948c3f048ba23858d222213b7c278aabede763 # v4.1.1
uses: actions/attest@f7c74d28b9d84cb8768d0b8ca14a4bac6ef463e6 # v4.2.0
with:
subject-path: |
build/dfetch-package/*.deb
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
}' > vsa-predicate.json
- name: Attest build artifacts with VSA
if: steps.verify-source.outcome == 'success'
uses: actions/attest@a1948c3f048ba23858d222213b7c278aabede763 # v4.1.1
uses: actions/attest@f7c74d28b9d84cb8768d0b8ca14a4bac6ef463e6 # v4.2.0
with:
subject-path: |
build/dfetch-package/*.deb
Expand Down Expand Up @@ -374,7 +374,7 @@ jobs:
SBOM=$(find dist -name '*.cdx.json' -maxdepth 1 | head -1)
echo "path=$SBOM" >> "$GITHUB_OUTPUT"
- name: Attest Python packages with SBOM
uses: actions/attest@a1948c3f048ba23858d222213b7c278aabede763 # v4.1.1
uses: actions/attest@f7c74d28b9d84cb8768d0b8ca14a4bac6ef463e6 # v4.2.0
with:
subject-path: |
dist/*.whl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
SBOM=$(find dist-sbom -name '*.cdx.json' -maxdepth 1 | head -1)
echo "path=$SBOM" >> "$GITHUB_OUTPUT"
- name: Attest Python distribution with SBOM
uses: actions/attest@a1948c3f048ba23858d222213b7c278aabede763 # v4.1.1
uses: actions/attest@f7c74d28b9d84cb8768d0b8ca14a4bac6ef463e6 # v4.2.0
with:
subject-path: 'dist/*.whl,dist/*.tar.gz'
predicate-type: 'https://cyclonedx.org/bom'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:

- name: Attest test results
if: steps.download-source.outcome == 'success'
uses: actions/attest@a1948c3f048ba23858d222213b7c278aabede763 # v4.1.1
uses: actions/attest@f7c74d28b9d84cb8768d0b8ca14a4bac6ef463e6 # v4.2.0
with:
subject-path: dfetch-source.tar.gz
predicate-type: https://in-toto.io/attestation/test-result/v0.1
Expand Down
Loading