Skip to content

Commit 2708b23

Browse files
authored
Merge pull request #404 from gregoranders/development
0.0.21 Release
2 parents ac8245a + 6a80f92 commit 2708b23

15 files changed

Lines changed: 91 additions & 79 deletions

.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.0
21+
- uses: actions/checkout@v3.6.0
2222
with:
2323
submodules: recursive
24-
- uses: actions/setup-node@v3.6.0
24+
- uses: actions/setup-node@v3.8.1
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.0
25+
- uses: actions/checkout@v3.6.0
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@v3.8.1
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@v3.2.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.0
25+
- uses: actions/checkout@v3.6.0
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@v3.8.1
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@v3.2.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.0
25+
- uses: actions/checkout@v3.6.0
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@v3.8.1
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@v3.2.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.0
29+
- uses: actions/checkout@v3.6.0
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@v3.8.1
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@v3.2.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/**

.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/**

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [0.0.21](https://github.com/gregoranders/nodejs-project-info/compare/v0.0.20...v0.0.21) (2023-10-28)
2+
3+
4+
### Features
5+
6+
* use node 20 ([80bfa97](https://github.com/gregoranders/nodejs-project-info/commit/80bfa972964c43d3648364adcbafe87d7f4c84a4))
7+
18
## [0.0.19](https://github.com/gregoranders/nodejs-project-info/compare/v0.0.18...v0.0.19) (2022-12-28)
29

310
### [0.0.18](https://github.com/gregoranders/nodejs-project-info/compare/v0.0.17...v0.0.18) (2022-02-26)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ This action provides the _name_, _version_ and the content of **package.json**,
3838
...
3939
- name: nodejs project information
4040
id: projectinfo
41-
uses: gregoranders/nodejs-project-info@v0.0.20
41+
uses: gregoranders/nodejs-project-info@v0.0.21
4242
- name: create release action
4343
id: createrelease
44-
uses: gregoranders/nodejs-create-release@v0.0.20
44+
uses: gregoranders/nodejs-create-release@v0.0.21
4545
env:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747
PACKAGE_JSON: ${{ steps.projectinfo.outputs.context }}

0 commit comments

Comments
 (0)