Skip to content

Commit 1ada978

Browse files
Update actions/cache action to v5
1 parent 95fb7dc commit 1ada978

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Load cached Poetry installation
2828
id: cached-poetry
29-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
29+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
3030
with:
3131
path: ~/.local
3232
key: poetry-${{ runner.os }}-${{ env.POETRY_VERSION }}-${{ steps.setup-python.outputs.python-version }}
@@ -43,7 +43,7 @@ jobs:
4343
run: poetry self add poetry-git-version-plugin
4444
- name: Load cached venv
4545
id: cached-poetry-dependencies
46-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
46+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
4747
with:
4848
path: .venv
4949
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/publish.yml

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

2828
- name: Load cached Poetry installation
2929
id: cached-poetry
30-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
30+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
3131
with:
3232
path: ~/.local
3333
key: poetry-${{ runner.os }}-${{ env.POETRY_VERSION }}-${{ steps.setup-python.outputs.python-version }}
@@ -44,7 +44,7 @@ jobs:
4444
run: poetry self add poetry-git-version-plugin
4545
- name: Load cached venv
4646
id: cached-poetry-dependencies
47-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
47+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
4848
with:
4949
path: .venv
5050
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)