Skip to content

Commit 3e6ee71

Browse files
committed
chore: update GitHub Actions to latest versions
- actions/checkout: v4 -> v5 - actions/setup-node: v4 -> v5 - actions/upload-artifact: v4 -> v5 - actions/create-github-app-token: v2 (already latest) - dependabot/fetch-metadata: v2 (already latest)
1 parent ae5cb10 commit 3e6ee71

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/npm-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
matrix:
1111
node-version: [20.x, 22.x, 24.x]
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Use Node.js ${{ matrix.node-version }}
15-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v5
1616
with:
1717
node-version: ${{ matrix.node-version }}
1818
cache: "npm"

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
publish-npm:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
14+
- uses: actions/checkout@v5
15+
- uses: actions/setup-node@v5
1616
with:
1717
node-version: 22
1818
registry-url: https://registry.npmjs.org/

.github/workflows/playwright.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
os: [ubuntu-latest, windows-latest, macos-latest]
1515
browser: [chromium, firefox, webkit]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Setup Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v5
2121
with:
2222
node-version: 20
2323
cache: "npm"
@@ -32,7 +32,7 @@ jobs:
3232
run: npx playwright test --project=${{ matrix.browser }}
3333

3434
- name: Upload test results
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v5
3636
if: ${{ !cancelled() }}
3737
with:
3838
name: playwright-report-${{ matrix.os }}-${{ matrix.browser }}

0 commit comments

Comments
 (0)