diff --git a/.github/workflows/stage-2-test.yaml b/.github/workflows/stage-2-test.yaml index 1d97d4eb..b5df5b19 100644 --- a/.github/workflows/stage-2-test.yaml +++ b/.github/workflows/stage-2-test.yaml @@ -55,7 +55,7 @@ jobs: run: | make test-unit - name: "Save the coverage check result" - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: code-coverage-report path: "coverage/lcov.info" @@ -75,7 +75,7 @@ jobs: with: fetch-depth: 0 # Full history is needed to improving relevancy of reporting - name: "Download coverage report from Unit Test artifacts" - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: code-coverage-report - name: "Perform static analysis" diff --git a/.github/workflows/stage-6-promote.yaml b/.github/workflows/stage-6-promote.yaml index 578bb0ea..aedabb73 100644 --- a/.github/workflows/stage-6-promote.yaml +++ b/.github/workflows/stage-6-promote.yaml @@ -55,7 +55,7 @@ jobs: aws s3 sync "s3://${AWS_S3_SOURCE_RELEASES_BUCKET}/tag/${{ inputs.release_tag }}" . - name: "Upload artefacts to GitHub" - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: release-package path: | @@ -76,7 +76,7 @@ jobs: contents: read steps: - name: "Download artefacts from GitHub" - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: release-package - name: "Configure AWS credentials"