diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 02ac972..2ea76f4 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@v5 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/stage-2-test.yaml b/.github/workflows/stage-2-test.yaml index c7ffbc4..d1705c2 100644 --- a/.github/workflows/stage-2-test.yaml +++ b/.github/workflows/stage-2-test.yaml @@ -72,14 +72,14 @@ jobs: run: | make test-unit - name: "Save the result of fast test suite" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: unit-tests path: "**/.reports/unit" include-hidden-files: true if: always() - name: "Save the result of code coverage" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: code-coverage-report path: ".reports/lcov.info"