Skip to content

Commit abde321

Browse files
committed
ci: update node version
1 parent 9baf7a4 commit abde321

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
jobs:
88
deploy:
9-
runs-on: 'ubuntu-latest'
9+
runs-on: "ubuntu-latest"
1010
environment: github-pages
1111
env:
1212
VITE_HONEYBADGER_API_KEY: ${{ secrets.HONEYBADGER_API_KEY }}
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-node@v2
1919
with:
20-
node-version: 16
20+
node-version: 22
2121
cache: "yarn"
2222
- run: yarn
2323
- run: yarn predeploy
@@ -28,4 +28,4 @@ jobs:
2828
keep_files: true
2929
- uses: honeybadger-io/github-notify-deploy-action@v1
3030
with:
31-
api_key: ${{ secrets.HONEYBADGER_API_KEY }}
31+
api_key: ${{ secrets.HONEYBADGER_API_KEY }}

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ on:
55

66
jobs:
77
build:
8-
runs-on: 'ubuntu-latest'
8+
runs-on: "ubuntu-latest"
99

1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: 16
14+
node-version: 22
1515
cache: "yarn"
1616
- run: yarn
1717
- run: yarn build

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
deploy:
12-
runs-on: 'ubuntu-latest'
12+
runs-on: "ubuntu-latest"
1313
environment: github-pages
1414
env:
1515
VITE_HONEYBADGER_API_KEY: ${{ secrets.HONEYBADGER_API_KEY }}
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v2
2121
- uses: actions/setup-node@v2
2222
with:
23-
node-version: 16
23+
node-version: 22
2424
cache: "yarn"
2525
- run: yarn
2626
- run: yarn predeploy
@@ -35,4 +35,4 @@ jobs:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636
publish_dir: ./dist
3737
keep_files: true
38-
destination_dir: ${{ github.ref }}
38+
destination_dir: ${{ github.ref }}

0 commit comments

Comments
 (0)