Skip to content

Commit

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

Update various actions used in test_release; the other workflows were already up-to-date.
  • Loading branch information
ajjackson authored Sep 4, 2024
1 parent d1292be commit 8268881
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.10'
channels: conda-forge,defaults
Expand All @@ -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 8268881

Please sign in to comment.