Skip to content

Commit 4b49ec7

Browse files
committed
chore: update version of actions to use Node 20.x
updates
1 parent 1a3e0ec commit 4b49ec7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99

1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v3
15+
uses: actions/setup-node@v4
1616
with:
17-
node-version: '20.x'
17+
node-version: "20.x"
1818

1919
- name: Install dependencies
2020
run: npm install

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: npm ci
2929
- name: Cache Playwright browsers
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.cache/ms-playwright
3333
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}

.github/workflows/staging.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
needs: test
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
20-
- uses: actions/setup-node@v3
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2121
with:
2222
node-version: 20.x
2323
- name: npm install and build and deploy

0 commit comments

Comments
 (0)