Skip to content

Commit 62b5aad

Browse files
authored
Updating the actions/cache version (#546)
Updated the cache version
1 parent 99be68e commit 62b5aad

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/code-quality-checks.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
#----------------------------------------------
3939
- name: Load cached venv
4040
id: cached-poetry-dependencies
41-
uses: actions/cache@v2
41+
uses: actions/cache@v4
4242
with:
4343
path: .venv
4444
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}
@@ -89,7 +89,7 @@ jobs:
8989
#----------------------------------------------
9090
- name: Load cached venv
9191
id: cached-poetry-dependencies
92-
uses: actions/cache@v2
92+
uses: actions/cache@v4
9393
with:
9494
path: .venv
9595
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}
@@ -141,7 +141,7 @@ jobs:
141141
#----------------------------------------------
142142
- name: Load cached venv
143143
id: cached-poetry-dependencies
144-
uses: actions/cache@v2
144+
uses: actions/cache@v4
145145
with:
146146
path: .venv
147147
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
#----------------------------------------------
4242
- name: Load cached venv
4343
id: cached-poetry-dependencies
44-
uses: actions/cache@v2
44+
uses: actions/cache@v4
4545
with:
4646
path: .venv
4747
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/publish-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
#----------------------------------------------
3030
- name: Load cached venv
3131
id: cached-poetry-dependencies
32-
uses: actions/cache@v2
32+
uses: actions/cache@v4
3333
with:
3434
path: .venv
3535
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
#----------------------------------------------
3232
- name: Load cached venv
3333
id: cached-poetry-dependencies
34-
uses: actions/cache@v2
34+
uses: actions/cache@v4
3535
with:
3636
path: .venv
3737
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ github.event.repository.name }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)