Skip to content

Commit c4b062a

Browse files
committed
Updated Workflow to use Node24
1 parent 2f91c62 commit c4b062a

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Initialize CodeQL
2626
uses: github/codeql-action/init@v4

.github/workflows/deploy-worker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Setup Node
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: 20
2323

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ jobs:
2525
contents: read
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0 # Required for lastUpdated feature
3131

3232
- name: Setup Node
33-
uses: actions/setup-node@v4
33+
uses: actions/setup-node@v6
3434
with:
3535
node-version: 20
3636
cache: npm
3737

3838
- name: Setup Pages
39-
uses: actions/configure-pages@v4
39+
uses: actions/configure-pages@v5
4040

4141
- name: Install dependencies
4242
run: npm ci
@@ -45,7 +45,7 @@ jobs:
4545
run: npm run docs:build
4646

4747
- name: Upload artifact
48-
uses: actions/upload-pages-artifact@v3
48+
uses: actions/upload-pages-artifact@v4
4949
with:
5050
path: .vitepress/dist
5151

0 commit comments

Comments
 (0)