Skip to content

Commit

Permalink
Merge pull request #164 from teixeira-fernando/renovate/actions-uploa…
Browse files Browse the repository at this point in the history
…d-artifact-4.x

Update actions/upload-artifact action to v4
  • Loading branch information
teixeira-fernando authored Jan 10, 2024
2 parents 3bfe1ab + cf61124 commit edb8ad0
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 edb8ad0

Please sign in to comment.