Skip to content

Commit b30bb82

Browse files
chore(deps): update actions/cache action to v4
1 parent 8bc46d3 commit b30bb82

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/setup-dependencies/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
python-version: ${{ inputs.python-version }}
2020

2121
- name: Restore pip cache
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.cache/pip
2525
key: pip-${{ inputs.python-version }}
@@ -29,15 +29,15 @@ runs:
2929
shell: bash
3030

3131
- name: Restore poetry cache
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: |
3535
~/.cache/pypoetry/cache
3636
~/.cache/pypoetry/artifacts
3737
key: poetry-cache-and-artifacts-${{ inputs.python-version }}
3838

3939
- name: Restore virtualenvs
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ~/.cache/pypoetry/virtualenvs
4343
key: venv-${{ hashFiles('poetry.lock') }}-${{ inputs.python-version }}

.github/actions/setup-git-lfs/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
shell: bash
99

1010
- name: Restore LFS cache
11-
uses: actions/cache@v3
11+
uses: actions/cache@v4
1212
with:
1313
path: .git/lfs
1414
key: lfs-${{ hashFiles('.git/lfs-assets-id') }}

0 commit comments

Comments
 (0)