diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 9794746d6..cbb958637 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -59,7 +59,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/stage-2-test.yaml b/.github/workflows/stage-2-test.yaml index 9c50c9d95..05fb25340 100644 --- a/.github/workflows/stage-2-test.yaml +++ b/.github/workflows/stage-2-test.yaml @@ -99,7 +99,7 @@ jobs: run: | echo "safe=$(echo '${{ matrix.workspace }}' | tr '/' '-_')" >> "$GITHUB_OUTPUT" - name: "Save the result of test suite" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: unit-tests-${{ steps.names.outputs.safe }} path: "${{ matrix.workspace }}/.reports/unit" @@ -107,7 +107,7 @@ jobs: if-no-files-found: ignore if: always() - name: "Save the result of code coverage" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: code-coverage-${{ steps.names.outputs.safe }} path: "${{ matrix.workspace }}/.reports/unit/coverage/lcov.info" @@ -195,7 +195,7 @@ jobs: --prepend-path-fix "../../" - name: Upload merged LCOV - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: code-coverage-report path: .reports/lcov.info