Skip to content

Commit 5dc3de7

Browse files
Update actions/cache action to v4
1 parent 6dc6d6d commit 5dc3de7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v4
2424

2525
- name: pre-commit cache
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.cache/pre-commit
2929
key: lint-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }}

.github/workflows/test-cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
python3 -m pip list --outdated | grep numpy | sed -r 's/ +/ /g' | cut -d ' ' -f 3 | sed 's/^/version=/' >> $GITHUB_OUTPUT
9696
9797
- name: pip cache
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: 'C:\cygwin\home\runneradmin\.cache\pip'
101101
key: ${{ runner.os }}-cygwin-pip3.${{ matrix.python-minor-version }}-numpy${{ steps.latest-numpy.outputs.version }}-${{ hashFiles('.ci/install.sh') }}

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Cache build
9191
id: build-cache
92-
uses: actions/cache@v3
92+
uses: actions/cache@v4
9393
with:
9494
path: winbuild\build
9595
key:

0 commit comments

Comments
 (0)