Skip to content
This repository was archived by the owner on Apr 16, 2022. It is now read-only.

Commit e7eaedc

Browse files
build(deps): update actions/cache action to v3 (#113)
Co-authored-by: Renovate Bot <[email protected]>
1 parent 87faa2f commit e7eaedc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
- name: Checkout git repository
1313
uses: actions/checkout@v3
1414
- name: Get Poetry cache
15-
uses: actions/cache@v1
15+
uses: actions/cache@v3
1616
with:
1717
path: ~/.cache/pypoetry/cache/
1818
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
1919
restore-keys: |
2020
${{ runner.os }}-poetry-
2121
- name: Get pip cache
22-
uses: actions/cache@v1
22+
uses: actions/cache@v3
2323
with:
2424
path: ~/.cache/pip
2525
key: ${{ runner.os }}-pip-${{ hashFiles('**/poetry.lock') }}
@@ -52,7 +52,7 @@ jobs:
5252
id: yarn-cache
5353
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
5454
- name: Cache dependencies
55-
uses: actions/cache@v1
55+
uses: actions/cache@v3
5656
with:
5757
path: ${{ steps.yarn-cache.outputs.dir }}
5858
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)