Skip to content

Commit d33f719

Browse files
authored
Merge pull request #267 from gregoranders/development
Update dependencies
2 parents c15c937 + defa352 commit d33f719

11 files changed

+66
-62
lines changed

.github/workflows/codeql-analysis.yml

+9-9
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

+4-4
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

+4-4
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

+4-4
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

+3-3
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.14.0
1+
16.19.0

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
## [0.0.19](https://github.com/gregoranders/nodejs-upload-asset/compare/v0.0.18...v0.0.19) (2022-12-28)
2+
13
### [0.0.18](https://github.com/gregoranders/nodejs-upload-asset/compare/v0.0.17...v0.0.18) (2022-02-26)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ This action uploads an asset to 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:
@@ -50,7 +50,7 @@ This action uploads an asset to a release, so your workflow can access it.
5050
target: ${{ github.ref }}
5151
- name: upload asset
5252
id: uploadasset
53-
uses: gregoranders/[email protected].18
53+
uses: gregoranders/[email protected].19
5454
env:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656
with:

SECURITY.md

+2-1
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.13 | :x: |
1011
| 0.0.12 | :x: |

dist/index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+32-31
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodejs-upload-asset",
3-
"version": "0.0.18",
3+
"version": "0.0.19",
44
"description": "NodeJS Upload Asset",
55
"main": "./dist/index.js",
66
"scripts": {
@@ -91,37 +91,38 @@
9191
},
9292
"homepage": "https://gregoranders.github.io/nodejs-upload-asset/",
9393
"dependencies": {
94-
"@actions/core": "1.6.0",
95-
"@actions/github": "5.0.0",
94+
"@actions/core": "1.10.0",
95+
"@actions/github": "5.1.1",
9696
"mime": "3.0.0"
9797
},
9898
"devDependencies": {
99-
"@commitlint/cli": "16.2.1",
100-
"@commitlint/config-conventional": "16.2.1",
101-
"@types/mime": "2.0.3",
102-
"@typescript-eslint/eslint-plugin": "5.12.1",
103-
"@typescript-eslint/parser": "5.12.1",
104-
"@vercel/ncc": "0.33.3",
99+
"@commitlint/cli": "17.3.0",
100+
"@commitlint/config-conventional": "17.3.0",
101+
"@types/jest": "29.2.4",
102+
"@types/mime": "3.0.1",
103+
"@typescript-eslint/eslint-plugin": "5.47.1",
104+
"@typescript-eslint/parser": "5.47.1",
105+
"@vercel/ncc": "0.36.0",
105106
"conventional-changelog-cli": "2.2.2",
106107
"cross-env": "7.0.3",
107-
"dictionary-en": "3.1.0",
108-
"eslint": "8.10.0",
109-
"eslint-config-prettier": "8.4.0",
110-
"eslint-plugin-jest": "26.1.1",
111-
"eslint-plugin-prettier": "4.0.0",
112-
"eslint-plugin-unicorn": "41.0.0",
108+
"dictionary-en": "3.2.0",
109+
"eslint": "8.30.0",
110+
"eslint-config-prettier": "8.5.0",
111+
"eslint-plugin-jest": "27.1.7",
112+
"eslint-plugin-prettier": "4.2.1",
113+
"eslint-plugin-unicorn": "45.0.2",
113114
"generate-changelog": "1.8.0",
114-
"husky": "7.0.4",
115-
"jest": "27.5.1",
116-
"jest-cli": "27.5.1",
117-
"jest-html-reporter": "3.4.2",
118-
"jest-junit": "13.0.0",
119-
"jest-spec-reporter": "1.0.17",
120-
"lint-staged": "12.3.4",
121-
"markdownlint": "0.25.1",
122-
"markdownlint-cli": "0.31.1",
123-
"prettier": "2.5.1",
124-
"remark-cli": "10.0.1",
115+
"husky": "8.0.2",
116+
"jest": "29.3.1",
117+
"jest-cli": "29.3.1",
118+
"jest-html-reporter": "3.7.0",
119+
"jest-junit": "15.0.0",
120+
"jest-spec-reporter": "1.0.19",
121+
"lint-staged": "13.1.0",
122+
"markdownlint": "0.27.0",
123+
"markdownlint-cli": "0.32.2",
124+
"prettier": "2.8.1",
125+
"remark-cli": "11.0.0",
125126
"remark-frontmatter": "4.0.1",
126127
"remark-lint": "9.1.1",
127128
"remark-lint-heading-whitespace": "1.0.0",
@@ -133,24 +134,24 @@
133134
"remark-preset-lint-markdown-style-guide": "5.1.2",
134135
"remark-preset-lint-recommended": "6.1.2",
135136
"remark-retext": "5.0.1",
136-
"remark-validate-links": "11.0.2",
137+
"remark-validate-links": "12.1.0",
137138
"retext-contractions": "5.2.0",
138139
"retext-diacritics": "4.2.0",
139140
"retext-english": "4.1.0",
140141
"retext-equality": "6.6.0",
141142
"retext-indefinite-article": "4.1.0",
142143
"retext-passive": "4.2.0",
143-
"retext-profanities": "7.2.0",
144+
"retext-profanities": "7.2.2",
144145
"retext-quotes": "5.2.0",
145146
"retext-readability": "7.2.0",
146147
"retext-redundant-acronyms": "4.3.0",
147148
"retext-repeated-words": "4.2.0",
148149
"retext-sentence-spacing": "5.2.0",
149-
"retext-spell": "5.1.0",
150+
"retext-spell": "5.3.0",
150151
"retext-syntax-urls": "3.1.2",
151152
"retext-usage": "0.5.0",
152153
"rimraf": "3.0.2",
153-
"ts-jest": "27.1.3",
154-
"typescript": "4.5.5"
154+
"ts-jest": "29.0.3",
155+
"typescript": "4.9.4"
155156
}
156157
}

0 commit comments

Comments
 (0)