diff --git a/.github/workflows/PR-pipeline.yml b/.github/workflows/PR-pipeline.yml index 10e89c1..0a24922 100644 --- a/.github/workflows/PR-pipeline.yml +++ b/.github/workflows/PR-pipeline.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ef77bad..21d79ae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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