Skip to content

Commit 505d5e8

Browse files
Update actions/cache action to v5
1 parent 23f460d commit 505d5e8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
3232
3333
- name: Cache Poetry cache
34-
uses: actions/cache@v4
34+
uses: actions/cache@v5
3535
with:
3636
path: ~/.cache/pip
3737
key: poetry-cache-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ env.MAIN_PYTHON_VERSION }}-${{ env.POETRY_VERSION }}
3838

3939
- name: Cache packages
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: .venv
4343
key: poetry-packages-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ env.MAIN_PYTHON_VERSION }}-${{ hashFiles('**/poetry.lock') }}
@@ -70,13 +70,13 @@ jobs:
7070
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
7171
7272
- name: Cache Poetry cache
73-
uses: actions/cache@v4
73+
uses: actions/cache@v5
7474
with:
7575
path: ~/.cache/pip
7676
key: poetry-cache-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ matrix.python-version }}-${{ env.POETRY_VERSION }}
7777

7878
- name: Cache packages
79-
uses: actions/cache@v4
79+
uses: actions/cache@v5
8080
with:
8181
path: .venv
8282
key: poetry-packages-${{ github.ref }}-${{ github.workflow }}-${{ github.job }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)