Skip to content

Commit 832a91d

Browse files
authored
ci: Update cache actions to v4. (#238)
1 parent f981df7 commit 832a91d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/check-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v2
1414
- name: Cache Yarn Cache
15-
uses: actions/cache@v2
15+
uses: actions/cache@v4
1616
with:
1717
path: 'node_modules'
1818
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
token: ${{ secrets.NITRIC_BOT_TOKEN }}
1616

1717
- name: Cache Dependencies
18-
uses: actions/cache@v2
18+
uses: actions/cache@v4
1919
with:
2020
path: 'node_modules'
2121
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v2
1515
- name: Cache Yarn Cache
16-
uses: actions/cache@v2
16+
uses: actions/cache@v4
1717
with:
1818
path: 'node_modules'
1919
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}

0 commit comments

Comments
 (0)