Skip to content

Commit b28c2d7

Browse files
Bump actions/cache from 3.2.6 to 3.3.1
Bumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 3.3.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@69d9d44...88522ab) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5f47f03 commit b28c2d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
python-version: '3.x'
1616
cache: 'pip'
1717
cache-dependency-path: 'pdm.lock'
18-
- uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
18+
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
1919
with:
2020
path: ~/.cache/pdm
2121
key: ${{ matrix.python }}-pdm-${{ hashFiles('pdm.lock') }}

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
python-version: ${{ matrix.python }}
3939
cache: 'pip'
4040
cache-dependency-path: 'pdm.lock'
41-
- uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
41+
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
4242
with:
4343
path: ~/.cache/pdm
4444
key: ${{ matrix.python }}-pdm-${{ hashFiles('pdm.lock') }}
4545
restore-keys: ${{ matrix.python }}-pdm-
4646
- name: cache mypy
47-
uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
47+
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
4848
with:
4949
path: ./.mypy_cache
5050
key: mypy|${{ matrix.python }}|${{ hashFiles('pyproject.toml') }}

0 commit comments

Comments
 (0)