Skip to content

Commit c5bb4fa

Browse files
Upgraded actions/cache from 3 to 4 (gantsign#256)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 24ad17e commit c5bb4fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727

2828
- name: Tox cache
2929
id: tox-cache
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.cache/pip
3333
key: tox-${{ hashFiles('requirements/tox.txt') }}-py${{ steps.setup-python.outputs.python-version}}
3434

3535
- name: Lint cache
3636
id: lint-cache
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: .tox
4040
key: lint-${{ hashFiles('requirements/lint.txt') }}-py${{ steps.setup-python.outputs.python-version}}
@@ -95,14 +95,14 @@ jobs:
9595

9696
- name: Tox cache
9797
id: tox-cache
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: ~/.cache/pip
101101
key: tox-${{ hashFiles('requirements/tox.txt') }}-py${{ steps.setup-python.outputs.python-version}}
102102

103103
- name: Molecule cache
104104
id: molecule-cache
105-
uses: actions/cache@v3
105+
uses: actions/cache@v4
106106
with:
107107
path: .tox
108108
key: molecule-${{ hashFiles(format('requirements/ansible-{0}.txt', matrix.ansible-version)) }}-py${{ steps.setup-python.outputs.python-version}}

0 commit comments

Comments
 (0)