Skip to content

Commit

Permalink
Fix actions/cache version
Browse files Browse the repository at this point in the history
  • Loading branch information
peterspackman committed Nov 24, 2023
1 parent 28339d7 commit aa67f39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: actions/cache@v4
- uses: actions/cache@v3
name: Load cache (Linux)
if: startsWith(runner.os, 'Linux')
with:
Expand All @@ -28,7 +28,7 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v4
- uses: actions/cache@v3
name: Load cache (macOS)
if: startsWith(runner.os, 'macOS')
with:
Expand All @@ -37,7 +37,7 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v4
- uses: actions/cache@v3
name: Load cache (Windows)
if: startsWith(runner.os, 'Windows')
with:
Expand Down

0 comments on commit aa67f39

Please sign in to comment.