Skip to content

Commit

Permalink
chore(ci): upgrade upload/download artifat action
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Martinez Trivino <[email protected]>
  • Loading branch information
migmartri committed Feb 1, 2024
1 parent 98bba5f commit 3db47e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: ./mvnw -B package

# Upload the built jar as an artifact so that it can be used in the Chainloop job
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifacts
path: target/*.jar
Expand All @@ -40,7 +40,7 @@ jobs:
needs: build
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Generate metadata
run: |
Expand All @@ -53,7 +53,7 @@ jobs:
output-file: ./metadata/sbom.cyclonedx.json
upload-artifact: false

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: metadata
path: metadata/*

0 comments on commit 3db47e8

Please sign in to comment.