Skip to content

Commit

Permalink
Update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 14, 2023
1 parent 3bfe1ab commit cf61124
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/PR-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Archive test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results-report
path: target/site/surefire-report.html
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,32 +42,32 @@ jobs:
- name: Mutation tests for shipment module
run: mvn -f shipment/ pitest:mutationCoverage
- name: Archive code coverage - Inventory
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: codeCoverage-inventory
path: inventory/target/site/jacoco
- name: Archive mutation coverage - Inventory
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mutationCoverage-inventory
path: inventory/target/pit-reports
- name: Archive code coverage - Shop
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: codeCoverage-shop
path: shop/target/site/jacoco
- name: Archive mutation coverage - Shop
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mutationCoverage-shop
path: shop/target/pit-reports
- name: Archive code coverage - Shipment
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: codeCoverage-shipment
path: shipment/target/site/jacoco
- name: Archive mutation coverage - Shipment
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mutationCoverage-shipment
path: shipment/target/pit-reports
Expand Down

0 comments on commit cf61124

Please sign in to comment.