Skip to content

Commit c806ff7

Browse files
chore(deps): update actions/cache action to v3.4.3
1 parent b56d674 commit c806ff7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Cache .venv 📦
5959
id: cached-poetry-dependencies
60-
uses: actions/cache@v3.0.6
60+
uses: actions/cache@v3.4.3
6161
with:
6262
path: server/.venv
6363
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
working-directory: client
4747

4848
- name: Cache node_modules 📦
49-
uses: actions/cache@v3.0.6
49+
uses: actions/cache@v3.4.3
5050
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
5151
with:
5252
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -73,7 +73,7 @@ jobs:
7373

7474
- name: Cache .venv 📦
7575
id: cached-poetry-dependencies
76-
uses: actions/cache@v3.0.6
76+
uses: actions/cache@v3.4.3
7777
with:
7878
path: server/.venv
7979
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: echo "::set-output name=dir::$(yarn cache dir)"
4343

4444
- name: Cache node_modules 📦
45-
uses: actions/cache@v3.0.6
45+
uses: actions/cache@v3.4.3
4646
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
4747
with:
4848
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

0 commit comments

Comments
 (0)