Skip to content

Commit 3afa387

Browse files
authored
Merge pull request #291 from gregoranders/development
Update dependencies
2 parents 2cc1b0c + 0841cf1 commit 3afa387

File tree

11 files changed

+66
-62
lines changed

11 files changed

+66
-62
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: "CodeQL"
1+
name: 'CodeQL'
22
on:
33
push:
4-
branches: [ main, development, feature/* ]
4+
branches: [main, development, feature/*]
55
pull_request:
6-
branches: [ main, development, feature/* ]
6+
branches: [main, development, feature/*]
77
schedule:
88
- cron: '43 7 * * 0'
99
jobs:
@@ -16,21 +16,21 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
language: [ 'javascript' ]
19+
language: ['javascript']
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3.2.0
2222
with:
2323
submodules: recursive
24-
- uses: actions/setup-node@v2
24+
- uses: actions/setup-node@v3.5.1
2525
with:
2626
node-version: 16.x
2727
- name: Echo Node.js version
2828
run: node --version
2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v1
30+
uses: github/codeql-action/init@v2
3131
with:
3232
languages: ${{ matrix.language }}
3333
- name: Autobuild
34-
uses: github/codeql-action/autobuild@v1
34+
uses: github/codeql-action/autobuild@v2
3535
- name: Perform CodeQL Analysis
36-
uses: github/codeql-action/analyze@v1
36+
uses: github/codeql-action/analyze@v2

.github/workflows/development.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
node-version: [16.x]
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3.2.0
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v3.5.1
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info
@@ -49,15 +49,15 @@ 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.0.0
52+
uses: paambaati/codeclimate-action@v3.2.0
5353
env:
5454
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
5555
with:
5656
coverageCommand: npm test
5757
coverageLocations: |
5858
./test/coverage/lcov.info:lcov
5959
- name: Publish Unit Test Results
60-
uses: EnricoMi/publish-unit-test-result-action/composite@v1
60+
uses: EnricoMi/publish-unit-test-result-action/composite@v2
6161
with:
6262
check_name: Unit Test Results node${{ matrix.node-version }}-${{ matrix.os }}
6363
files: test/junit.xml

.github/workflows/feature.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
node-version: [16.x]
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3.2.0
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v3.5.1
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info
@@ -49,15 +49,15 @@ 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.0.0
52+
uses: paambaati/codeclimate-action@v3.2.0
5353
env:
5454
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
5555
with:
5656
coverageCommand: npm test
5757
coverageLocations: |
5858
./test/coverage/lcov.info:lcov
5959
- name: Publish Unit Test Results
60-
uses: EnricoMi/publish-unit-test-result-action/composite@v1
60+
uses: EnricoMi/publish-unit-test-result-action/composite@v2
6161
with:
6262
check_name: Unit Test Results node${{ matrix.node-version }}-${{ matrix.os }}
6363
files: test/junit.xml

.github/workflows/master.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
node-version: [16.x]
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3.2.0
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v3.5.1
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info
@@ -49,15 +49,15 @@ 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.0.0
52+
uses: paambaati/codeclimate-action@v3.2.0
5353
env:
5454
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
5555
with:
5656
coverageCommand: npm test
5757
coverageLocations: |
5858
./test/coverage/lcov.info:lcov
5959
- name: Publish Unit Test Results
60-
uses: EnricoMi/publish-unit-test-result-action/composite@v1
60+
uses: EnricoMi/publish-unit-test-result-action/composite@v2
6161
with:
6262
check_name: Unit Test Results node${{ matrix.node-version }}-${{ matrix.os }}
6363
files: test/junit.xml

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
node-version: [16.x]
2727

2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3.2.0
3030
with:
3131
submodules: recursive
3232
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
33-
uses: actions/setup-node@v2
33+
uses: actions/setup-node@v3.5.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.0.0
57+
uses: paambaati/codeclimate-action@v3.2.0
5858
env:
5959
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
6060
with:

.nvmrc

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

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
## [0.0.19](https://github.com/gregoranders/nodejs-create-release/compare/v0.0.18...v0.0.19) (2022-12-28)
2+
13
### [0.0.18](https://github.com/gregoranders/nodejs-create-release/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 finds or creates a release, so your workflow can access it.
3838
...
3939
- name: nodejs project information
4040
id: projectinfo
41-
uses: gregoranders/[email protected].18
41+
uses: gregoranders/[email protected].19
4242
- name: create release
4343
id: createrelease
44-
uses: gregoranders/[email protected].18
44+
uses: gregoranders/[email protected].19
4545
env:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747
with:

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
| Version | Supported |
66
| :------ | :----------------: |
7-
| 0.0.18 | :white_check_mark: |
7+
| 0.0.19 | :white_check_mark: |
8+
| 0.0.18 | :x: |
89
| 0.0.17 | :x: |
910
| 0.0.16 | :x: |
1011
| 0.0.15 | :x: |

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)