Skip to content

Commit

Permalink
Merge pull request #86 from Kijewski/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
Kijewski committed Jan 18, 2024
2 parents cc616db + cb9f97d commit 3c4166b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
submodules: true

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: cache--${{ github.event.inputs.os }}--${{ github.event.inputs.python }}--${{ hashFiles('./requirements-dev.txt') }}
path: ~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
submodules: true

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: cache--${{ github.event.inputs.os }}--${{ github.event.inputs.python }}--${{ hashFiles('./requirements-dev.txt') }}
path: ~/.cache/pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
submodules: true

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: cache--${{ matrix.os }}--${{ matrix.python }}--${{ hashFiles('./requirements*.txt', './Makefile') }}
restore-keys: cache--${{ matrix.os }}--${{ matrix.python }}--
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
submodules: true

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: lint--${{ hashFiles('./requirements*.txt', './Makefile') }}
restore-keys: lint--
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
submodules: true

- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: codeql-analysis--${{ github.event.inputs.os }}--${{ github.event.inputs.python }}--${{ hashFiles('./requirements-dev.txt') }}
path: ~/.cache/pip
Expand Down

0 comments on commit 3c4166b

Please sign in to comment.