Skip to content

Commit 5f7e62c

Browse files
committed
fix(ci): bump Node.js versions to currently maintained versions
1 parent d42c3fc commit 5f7e62c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest]
23-
node: [12, 14, 16]
23+
node: [18, 20, 22]
2424

2525
steps:
2626
- name: Clone repository
@@ -53,6 +53,6 @@ jobs:
5353

5454
- name: BundleWatch
5555
run: yarn run bundlewatch
56-
if: matrix.node == '16'
56+
if: matrix.node == '20'
5757
env:
5858
BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}"

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ permissions:
2121
jobs:
2222
analyze:
2323
permissions:
24-
actions: read # for github/codeql-action/init to get workflow details
25-
contents: read # for actions/checkout to fetch code
26-
security-events: write # for github/codeql-action/autobuild to send a status report
24+
actions: read # For "github/codeql-action/init" to get workflow details
25+
contents: read # For "actions/checkout to fetch" code
26+
security-events: write # For "github/codeql-action/autobuild" to send a status report
2727
name: Analyze
2828
runs-on: ubuntu-latest
2929

3030
steps:
3131
- name: Checkout repository
3232
uses: actions/checkout@v3
3333

34-
# Initializes the CodeQL tools for scanning.
34+
# Initializes the CodeQL tools for scanning
3535
- name: Initialize CodeQL
3636
uses: github/codeql-action/init@v2
3737
with:

.github/workflows/docs-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
- master
77
- docs-github-pages
88

9-
# Allows you to run this workflow manually from the Actions tab.
9+
# Allows you to run this workflow manually from the Actions tab
1010
workflow_dispatch:
1111

12-
# Sets permissions of the "GITHUB_TOKEN" to allow deployment to GitHub Pages.
12+
# Sets permissions of the "GITHUB_TOKEN" to allow deployment to GitHub Pages
1313
permissions:
1414
contents: read
1515
pages: write

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest]
23-
node: [16]
23+
node: [20]
2424

2525
steps:
2626
- name: Clone repository
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
matrix:
5959
os: [ubuntu-latest]
60-
node: [16]
60+
node: [20]
6161

6262
steps:
6363
- name: Clone repository
@@ -94,7 +94,7 @@ jobs:
9494
strategy:
9595
matrix:
9696
os: [ubuntu-latest]
97-
node: [12, 14, 16]
97+
node: [18, 20, 22]
9898

9999
steps:
100100
- name: Clone repository

0 commit comments

Comments
 (0)