Skip to content

Commit

Permalink
CI(GHActions): Upgrade setup-python and cache actions
Browse files Browse the repository at this point in the history
  • Loading branch information
phdru committed Jan 13, 2025
1 parent 4b9bd5e commit 40ff289
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ jobs:
miniforge-version: latest
python-version: ${{ matrix.python-version }}
if: ${{ !contains(fromJSON(env.not_in_conda), matrix.python-version) }}
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
if: ${{ contains(fromJSON(env.not_in_conda), matrix.python-version) }}
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/conda_pkgs_dir
key: ${{ runner.os }}-conda
- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ matrix.pip-cache-path }}
key: ${{ runner.os }}-pip
Expand Down

0 comments on commit 40ff289

Please sign in to comment.