Skip to content

Commit 2964ca6

Browse files
committed
Fix deprecated GitHub Actions - update to actions/cache@v4 and actions/checkout@v4
1 parent fad3916 commit 2964ca6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313

1414
steps:
1515
- name: Checkout Git repo
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222

2323
- name: Cache node_modules
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: '**/node_modules'
2727
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88

99
steps:
1010
- name: Checkout Git repo
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v4
1212

1313
- name: Cache node_modules
14-
uses: actions/cache@v2
14+
uses: actions/cache@v4
1515
with:
1616
path: '**/node_modules'
1717
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)