Skip to content

Commit c839d92

Browse files
authored
Merge pull request #357 from gregoranders/development
0.0.21 Release
2 parents ce5b88a + 1706726 commit c839d92

16 files changed

Lines changed: 90 additions & 83 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
matrix:
1919
language: ['javascript']
2020
steps:
21-
- uses: actions/checkout@v3.5.0
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:
26-
node-version: 16.x
26+
node-version: 20.x
2727
- name: Echo Node.js version
2828
run: node --version
2929
- name: Initialize CodeQL

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

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ This action finds or creates a release, so your workflow can access it.
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
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
with:

0 commit comments

Comments
 (0)