Skip to content

Commit 768e498

Browse files
committed
chore: update GitHub Actions and Node.js versions
1 parent 8766c72 commit 768e498

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
- name: Setup Node
25-
uses: actions/setup-node@v4
25+
uses: actions/setup-node@v6
2626
with:
2727
node-version: "24"
2828
cache: "yarn"
@@ -34,12 +34,12 @@ jobs:
3434
run: yarn vite build --config vite.deploy.js
3535

3636
- name: Setup Pages
37-
uses: actions/configure-pages@v4
37+
uses: actions/configure-pages@v5
3838
with:
3939
enablement: true
4040

4141
- name: Upload static site to Pages
42-
uses: actions/upload-pages-artifact@v3
42+
uses: actions/upload-pages-artifact@v4
4343
with:
4444
path: "./dist"
4545

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
node-version: [ 20, 21, 22, 24 ]
15+
node-version: [ 22, 24, 25 ]
1616
os:
1717
- ubuntu-latest
1818
- macos-latest
1919
# - windows-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
23-
- uses: actions/setup-node@v4
22+
- uses: actions/checkout@v6
23+
- uses: actions/setup-node@v6
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
- name: Install dependencies

0 commit comments

Comments
 (0)