Skip to content

Commit

Permalink
Update github action versions in test_release
Browse files Browse the repository at this point in the history
The latest version of download-artifact v4 includes an important
security fix.

Version numbers of upload- and download- artifact are supposed to
match.

Other actions are already using these versions but this one was
overlooked.
  • Loading branch information
ajjackson committed Sep 4, 2024
1 parent d1292be commit 3a84e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: python -m tox -c release_tox.ini
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Unit test results ${{ matrix.os }}
path: tests_and_analysis/test/reports/junit_report*.xml
Expand All @@ -47,7 +47,7 @@ jobs:
if: success() || failure()
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Publish test results
Expand Down

0 comments on commit 3a84e04

Please sign in to comment.