Skip to content

Commit b75d7d8

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 6912a99 commit b75d7d8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/setup-python@v4
1010
with:
1111
python-version: 3.x
12-
- uses: actions/cache@v3
12+
- uses: actions/cache@v4
1313
with:
1414
path: ~/.cache/pip
1515
key: v1/${{ runner.os }}/pip/${{ hashFiles('{requirements,development}.txt') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/setup-python@v4
1111
with:
1212
python-version: 3.x
13-
- uses: actions/cache@v3
13+
- uses: actions/cache@v4
1414
with:
1515
path: ~/.cache/pip
1616
key: v1/${{ runner.os }}/pip/${{ hashFiles('{requirements,development}.txt') }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/setup-python@v4
3131
with:
3232
python-version: ${{ matrix.python }}
33-
- uses: actions/cache@v3
33+
- uses: actions/cache@v4
3434
with:
3535
path: ~/.cache/pip
3636
key: v1/${{ runner.os }}/pypi-${{matrix.python}}/${{ hashFiles('{requirements,development}.txt') }}
@@ -41,7 +41,7 @@ jobs:
4141
- name: Get yarn cache directory path
4242
id: yarn-cache-dir-path
4343
run: echo "::set-output name=dir::$(yarn cache dir)"
44-
- uses: actions/cache@v3
44+
- uses: actions/cache@v4
4545
with:
4646
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
4747
key: v1/${{ runner.os }}/node-${{ matrix.node }}/${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)