Skip to content

Commit

Permalink
Update github actions to Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
ajjackson committed Jan 30, 2024
1 parent c361e20 commit e61acb2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,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.8
channels: conda-forge,defaults
Expand All @@ -47,7 +47,7 @@ jobs:
run: python -m tox
- 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 @@ -66,8 +66,8 @@ jobs:
runs-on: ubuntu-latest
if: success() || failure()
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.8
channels: conda-forge,defaults
Expand All @@ -85,7 +85,7 @@ jobs:
run: sphinx-build -c source -b doctest source .
- name: Upload docstest results
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Doctest results
path: doc/output.txt
Expand Down

0 comments on commit e61acb2

Please sign in to comment.