Skip to content

Commit

Permalink
Bump actions/cache from 4.0.2 to 4.1.0
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4.0.2...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Oct 7, 2024
1 parent b3a91ef commit 63b2b91
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ jobs:
- name: Set up pip cache
if: >-
steps.request-check.outputs.release-requested != 'true'
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: >-
${{
Expand Down Expand Up @@ -468,7 +468,7 @@ jobs:
print(f'py-hash-key={hash}', file=outputs_file)
shell: python
- name: Set up pip cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: >-
${{
Expand Down Expand Up @@ -911,7 +911,7 @@ jobs:
print(f'py-hash-key={hash}', file=outputs_file)
shell: python
- name: Set up pip cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: >-
${{
Expand Down Expand Up @@ -1429,7 +1429,7 @@ jobs:
print(f'py-hash-key={hash}', file=outputs_file)
shell: python
- name: Set up pip cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: >-
${{
Expand Down Expand Up @@ -1922,7 +1922,7 @@ jobs:
print(f'py-hash-key={hash}', file=outputs_file)
shell: python
- name: Set up pip cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: >-
${{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
print(f'py-hash-key={hash}', file=outputs_file)
shell: python
- name: Set up pip cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: >-
${{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
print(f'py-hash-key={hash}', file=outputs_file)
shell: python
- name: Pre-commit cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: ~/.cache/pre-commit
key: >-
Expand All @@ -67,7 +67,7 @@ jobs:
hashFiles('.pre-commit-config.yaml') }}-${{
hashFiles('pytest.ini') }}
- name: Pip cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: ~/.cache/pip
key: >-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
shell: python
- name: Set up pip cache
if: fromJSON(steps.py-abi.outputs.is-stable-abi)
uses: actions/cache@v4.0.2
uses: actions/cache@v4.1.0
with:
path: >-
${{
Expand Down

0 comments on commit 63b2b91

Please sign in to comment.