Skip to content

Commit 5e3b06b

Browse files
committed
feat: use node 20
1 parent 0f67ad4 commit 5e3b06b

File tree

13 files changed

+76
-72
lines changed

13 files changed

+76
-72
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ updates:
66
schedule:
77
interval: 'weekly'
88
labels:
9-
- 'npm dependencies'
9+
- 'github dependencies'
1010
commit-message:
1111
prefix: 'github-actions'
1212
assignees:

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
matrix:
1919
language: ['javascript']
2020
steps:
21-
- uses: actions/checkout@v3.5.2
21+
- uses: actions/checkout@v4.1.1
2222
with:
2323
submodules: recursive
24-
- uses: actions/setup-node@v3.6.0
24+
- uses: actions/setup-node@v4.0.0
2525
with:
2626
node-version: 16.x
2727
- name: Echo Node.js version

.github/workflows/development.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest, macos-latest, windows-latest]
22-
node-version: [16.x]
22+
node-version: [20.x]
2323

2424
steps:
25-
- uses: actions/checkout@v3.5.2
25+
- uses: actions/checkout@v4.1.1
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v3.6.0
29+
uses: actions/setup-node@v4.0.0
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info
@@ -49,7 +49,7 @@ jobs:
4949
path-to-lcov: ./test/coverage/lcov.info
5050
- name: publish code coverage to code climate
5151
if: matrix.os == 'ubuntu-latest'
52-
uses: paambaati/codeclimate-action@v4.0.0
52+
uses: paambaati/codeclimate-action@v5.0.0
5353
env:
5454
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
5555
with:

.github/workflows/feature.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest, macos-latest, windows-latest]
22-
node-version: [16.x]
22+
node-version: [20.x]
2323

2424
steps:
25-
- uses: actions/checkout@v3.5.2
25+
- uses: actions/checkout@v4.1.1
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v3.6.0
29+
uses: actions/setup-node@v4.0.0
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info
@@ -49,7 +49,7 @@ jobs:
4949
path-to-lcov: ./test/coverage/lcov.info
5050
- name: publish code coverage to code climate
5151
if: matrix.os == 'ubuntu-latest'
52-
uses: paambaati/codeclimate-action@v4.0.0
52+
uses: paambaati/codeclimate-action@v5.0.0
5353
env:
5454
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
5555
with:

.github/workflows/master.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest, macos-latest, windows-latest]
22-
node-version: [16.x]
22+
node-version: [20.x]
2323

2424
steps:
25-
- uses: actions/checkout@v3.5.2
25+
- uses: actions/checkout@v4.1.1
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v3.6.0
29+
uses: actions/setup-node@v4.0.0
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info
@@ -49,7 +49,7 @@ jobs:
4949
path-to-lcov: ./test/coverage/lcov.info
5050
- name: publish code coverage to code climate
5151
if: matrix.os == 'ubuntu-latest'
52-
uses: paambaati/codeclimate-action@v4.0.0
52+
uses: paambaati/codeclimate-action@v5.0.0
5353
env:
5454
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
5555
with:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
node-version: [16.x]
26+
node-version: [20.x]
2727

2828
steps:
29-
- uses: actions/checkout@v3.5.2
29+
- uses: actions/checkout@v4.1.1
3030
with:
3131
submodules: recursive
3232
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
33-
uses: actions/setup-node@v3.6.0
33+
uses: actions/setup-node@v4.0.0
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636
registry-url: 'https://registry.npmjs.org/'
@@ -54,7 +54,7 @@ jobs:
5454
path-to-lcov: ./test/coverage/lcov.info
5555
- name: publish code coverage to code climate
5656
if: matrix.os == 'ubuntu-latest'
57-
uses: paambaati/codeclimate-action@v4.0.0
57+
uses: paambaati/codeclimate-action@v5.0.0
5858
env:
5959
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
6060
with:

.markdownlintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules/**
22
CHANGELOG.md
33
LICENSE
4+
.github/**

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.19.0
1+
20

.remarkignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node-modules/
22
docs/
33
CHANGELOG.md
4+
.github/**

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ outputs:
2020
url:
2121
description: 'Asset Download Url'
2222
runs:
23-
using: 'node16'
23+
using: 'node20'
2424
main: 'dist/index.js'
2525
branding:
2626
icon: 'package'

0 commit comments

Comments
 (0)