Skip to content

Commit 93e8db5

Browse files
Bump actions/cache from 3.2.3 to 3.2.4
Bumps [actions/cache](https://github.com/actions/cache) from 3.2.3 to 3.2.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@58c146c...627f0f4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 88586f2 commit 93e8db5

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@58c146cc91c5b9e778e71775dfe9bf1442ad9a12
18+
- uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920
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@58c146cc91c5b9e778e71775dfe9bf1442ad9a12
41+
- uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920
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@58c146cc91c5b9e778e71775dfe9bf1442ad9a12
47+
uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920
4848
with:
4949
path: ./.mypy_cache
5050
key: mypy|${{ matrix.python }}|${{ hashFiles('pyproject.toml') }}

0 commit comments

Comments
 (0)