Skip to content

Commit 85b140a

Browse files
dependabot[bot]dolfinus
authored andcommitted
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9903bf0 commit 85b140a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: '3.11'
3434

3535
- name: Cache pip
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: ~/.cache/pip
3939
key: ${{ runner.os }}-python-${{ matrix.python-version }}-codeql-${{ hashFiles('requirements*.txt') }}

.github/workflows/dev-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python-version: ${{ env.DEFAULT_PYTHON }}
4040

4141
- name: Cache pip
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: ~/.cache/pip
4545
key: ${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-release-${{ hashFiles('requirements*.txt') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ${{ env.DEFAULT_PYTHON }}
3434

3535
- name: Cache pip
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: ~/.cache/pip
3939
key: ${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-release-${{ hashFiles('requirements*.txt') }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
python-version: ${{ matrix.python-version }}
4949

5050
- name: Cache pip
51-
uses: actions/cache@v3
51+
uses: actions/cache@v4
5252
with:
5353
path: ~/.cache/pip
5454
key: ${{ runner.os }}-python-${{ matrix.python-version }}-tests-${{ hashFiles('requirements*.txt') }}
@@ -98,7 +98,7 @@ jobs:
9898
python-version: '3.11'
9999

100100
- name: Cache pip
101-
uses: actions/cache@v3
101+
uses: actions/cache@v4
102102
with:
103103
path: ~/.cache/pip
104104
key: ${{ runner.os }}-python-3.11-tests-${{ hashFiles('requirements*.txt') }}

0 commit comments

Comments
 (0)