Skip to content

Commit 9065657

Browse files
committed
upgrade GitHub actions
1 parent 4a2ee8f commit 9065657

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121

2222
steps:
2323
# 1. Checkout the repository
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
# 2. Setup Node.js
2727
- name: Setup Node.js
28-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version: '20'
3131

.github/workflows/typescript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Upload TypeScript Logs
5151
if: failure()
52-
uses: actions/upload-artifact@v3
52+
uses: actions/upload-artifact@v4
5353
with:
5454
name: typescript-errors
5555
path: logs/typescript-errors.log

.github/workflows/vitest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818

1919
steps:
2020
# 1. Checkout the repository
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
# 2. Setup Node.js
2424
- name: Setup Node.js
25-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: '20'
2828

@@ -57,7 +57,7 @@ jobs:
5757
# 7. Upload Test Logs (on failure)
5858
- name: Upload Test Logs
5959
if: failure()
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: idb-cache-test-logs
6363
path: logs/test-output.log

0 commit comments

Comments
 (0)