Skip to content

Commit b8ac2af

Browse files
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] <support@github.com>
1 parent d26c0cb commit b8ac2af

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: ${{ env.python_version}}
2929
- uses: FranzDiebold/github-env-vars-action@v2
3030
- name: Load Python Dependencies from cache
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ${{ env.python_cache_ubuntu_path }}
3434
key: linux-pip-3-continuous-delivery-scripts
@@ -70,7 +70,7 @@ jobs:
7070
python -m pipenv requirements > dev-requirements.txt
7171
- uses: FranzDiebold/github-env-vars-action@v2
7272
- name: Load Python Dependencies from cache
73-
uses: actions/cache@v3
73+
uses: actions/cache@v4
7474
with:
7575
path: ${{ env.python_cache_ubuntu_path }}
7676
key: linux-pip-3-continuous-delivery-scripts
@@ -112,7 +112,7 @@ jobs:
112112
python -m pipenv requirements > dev-requirements.txt
113113
- uses: FranzDiebold/github-env-vars-action@v2
114114
- name: Load Python Dependencies from cache
115-
uses: actions/cache@v3
115+
uses: actions/cache@v4
116116
with:
117117
path: ${{ env.python_cache_ubuntu_path }}
118118
key: linux-pip-3-continuous-delivery-scripts
@@ -232,7 +232,7 @@ jobs:
232232
echo "Path to dependency cache: [${{ env.CACHE_PATH }}]"
233233
- name: Load Python Dependencies from cache
234234
if: ${{ ! startsWith(matrix.os, 'windows') }}
235-
uses: actions/cache@v3
235+
uses: actions/cache@v4
236236
with:
237237
path: ${{ env.CACHE_PATH }}
238238
key: ${{ matrix.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/dev-requirements.txt') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python -m pipenv requirements > dev-requirements.txt
3636
- uses: FranzDiebold/github-env-vars-action@v2
3737
- name: Load Python Dependencies from cache
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.cache/pip
4141
key: linux-pip-3-continuous-delivery-scripts

0 commit comments

Comments
 (0)