Skip to content

Commit

Permalink
Fix failing slsa GH action
Browse files Browse the repository at this point in the history
The 2.0 release also upgraded the artifact uploader/downloader, which is what broke our workflow.

See https://github.com/slsa-framework/slsa-github-generator/blob/v2.0.0/CHANGELOG.md#v200-breaking-change-upload-artifact-and-download-artifact

Change-Id: Ia17d1cbf358aebbb0ea7f5e97a24f2220b784431
  • Loading branch information
jul-sh committed Apr 22, 2024
1 parent f665534 commit 2101aa7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reusable_provenance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,13 @@ jobs:
EOF
- name: Download the built artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.generate_provenance.outputs.build-outputs-name }}
path: downloads

- name: Download the DSSE document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name:
${{ needs.generate_provenance.outputs.attestations-download-name }}
Expand Down Expand Up @@ -179,13 +179,13 @@ jobs:

steps:
- name: Download the built artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.generate_provenance.outputs.build-outputs-name }}
path: downloads

- name: Download the DSSE document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name:
${{ needs.generate_provenance.outputs.attestations-download-name }}
Expand Down

0 comments on commit 2101aa7

Please sign in to comment.