Skip to content

Commit da301ca

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

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
@@ -26,14 +26,14 @@ jobs:
2626

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

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

8585
- name: Tox cache
8686
id: tox-cache
87-
uses: actions/cache@v3
87+
uses: actions/cache@v4
8888
with:
8989
path: ~/.cache/pip
9090
key: tox-${{ hashFiles('requirements/tox.txt') }}-py${{ steps.setup-python.outputs.python-version}}
9191

9292
- name: Molecule cache
9393
id: molecule-cache
94-
uses: actions/cache@v3
94+
uses: actions/cache@v4
9595
with:
9696
path: .tox
9797
key: molecule-${{ hashFiles(format('requirements/ansible-{0}.txt', matrix.ansible-version)) }}-py${{ steps.setup-python.outputs.python-version}}

0 commit comments

Comments
 (0)