Skip to content

Commit ab72700

Browse files
chore: upgrade actions and deps.
1 parent f2bdba7 commit ab72700

5 files changed

Lines changed: 61 additions & 61 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v6.0.1
18+
uses: actions/checkout@v6.0.2
1919

2020
- name: Setup Node
21-
uses: actions/setup-node@v6.2.0
21+
uses: actions/setup-node@v6.4.0
2222
with:
2323
node-version: '24.14.0'
2424

2525
- name: Install Dependencies
2626
run: npm ci
2727

2828
- name: Save error log
29-
uses: actions/upload-artifact@v6.0.0
29+
uses: actions/upload-artifact@v7.0.1
3030
if: ${{ failure() }}
3131
with:
3232
name: npm-debug-log-${{ hashFiles('package-lock.json') }}

.github/workflows/deploy.yml

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

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v6.0.1
24+
uses: actions/checkout@v6.0.2
2525

2626
- name: Setup Node
27-
uses: actions/setup-node@v6.2.0
27+
uses: actions/setup-node@v6.4.0
2828
with:
2929
node-version: '24.14.0'
3030

@@ -35,13 +35,13 @@ jobs:
3535
run: npm run build
3636

3737
- name: Setup Pages
38-
uses: actions/configure-pages@v5.0.0
38+
uses: actions/configure-pages@v6.0.0
3939

4040
- name: Upload Pages artifact
41-
uses: actions/upload-pages-artifact@v3.0.1
41+
uses: actions/upload-pages-artifact@v5.0.0
4242
with:
4343
path: dist
4444

4545
- name: Deploy to GitHub Pages
4646
id: deployment
47-
uses: actions/deploy-pages@v4.0.5
47+
uses: actions/deploy-pages@v5.0.0

.github/workflows/playwright.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ jobs:
6161

6262
steps:
6363
- name: Checkout
64-
uses: actions/checkout@v6.0.1
64+
uses: actions/checkout@v6.0.2
6565

6666
- name: Setup Node
67-
uses: actions/setup-node@v6.2.0
67+
uses: actions/setup-node@v6.4.0
6868
with:
6969
node-version: '24.14.0'
7070
cache: npm
@@ -76,7 +76,7 @@ jobs:
7676
run: npm run check-types
7777

7878
- name: Cache Playwright Browsers
79-
uses: actions/cache@v5
79+
uses: actions/cache@v5.0.5
8080
with:
8181
path: ~/.cache/ms-playwright
8282
key: ${{ runner.os }}-playwright-${{ matrix.browser }}-${{ hashFiles('package-lock.json') }}
@@ -97,15 +97,15 @@ jobs:
9797
npm run test:e2e -- --project=${{ matrix.browser }} --workers=${{ matrix.workers }} $SHARD_ARGS
9898
9999
- name: Upload Playwright report
100-
uses: actions/upload-artifact@v6.0.0
100+
uses: actions/upload-artifact@v7.0.1
101101
if: ${{ failure() }}
102102
with:
103103
name: playwright-report-${{ matrix.browser }}-${{ matrix.shardIndex }}of${{ matrix.shardTotal }}
104104
path: playwright-report
105105
if-no-files-found: ignore
106106

107107
- name: Upload Playwright test results
108-
uses: actions/upload-artifact@v6.0.0
108+
uses: actions/upload-artifact@v7.0.1
109109
if: ${{ failure() }}
110110
with:
111111
name: test-results-${{ matrix.browser }}-${{ matrix.shardIndex }}of${{ matrix.shardTotal }}

package-lock.json

Lines changed: 47 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@html-eslint/parser": "^0.58.1",
5151
"@playwright/test": "^1.58.2",
5252
"@types/node": "^25.5.0",
53-
"@typescript-eslint/parser": "^8.57.1",
53+
"@typescript-eslint/parser": "^8.59.1",
5454
"esbuild": "^0.27.4",
5555
"eslint": "^10.0.3",
5656
"eslint-plugin-playwright": "^2.10.0",

0 commit comments

Comments
 (0)