Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions/upload-artifact action to v4 #164

Merged
merged 1 commit into from
Jan 10, 2024
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
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