Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/stage-2-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stage-6-promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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"
Expand Down