Skip to content

Commit bcfc522

Browse files
authored
Merge pull request #333 from gregoranders/development
0.0.21 Release
2 parents f5a917e + afe13c8 commit bcfc522

File tree

17 files changed

+96
-82
lines changed

17 files changed

+96
-82
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.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:
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@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/**

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-upload-asset/compare/v0.0.20...v0.0.21) (2023-10-28)
2+
3+
4+
### Features
5+
6+
* use node 20 ([5e3b06b](https://github.com/gregoranders/nodejs-upload-asset/commit/5e3b06b340bd656177152d7e0d7806778af9eaef))
7+
18
## [0.0.19](https://github.com/gregoranders/nodejs-upload-asset/compare/v0.0.18...v0.0.19) (2022-12-28)
29

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

0 commit comments

Comments
 (0)