Skip to content

Commit

Permalink
Update workflow actions to use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
n-elie committed Feb 21, 2024
1 parent c3a1e3d commit d11250b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache conda packages
uses: actions/cache@v3
uses: actions/cache@v4
env:
# Increase this value to reset cache
CACHE_NUMBER: 0
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-${{ env.CACHE_NUMBER }}
- name: Set up Python ${{ matrix.python-version }} (Miniconda)
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-version: latest
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
run: cd tests && pytest --cov=PySide6MolecularNetwork --cov-report=xml .
- name: Upload coverage
if: success()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
Expand Down

0 comments on commit d11250b

Please sign in to comment.