Skip to content

Commit f5a917e

Browse files
authored
Merge pull request #298 from gregoranders/development
0.0.20 release
2 parents d33f719 + 5c0dd5d commit f5a917e

File tree

10 files changed

+45
-44
lines changed

10 files changed

+45
-44
lines changed

.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.2.0
21+
- uses: actions/checkout@v3.5.0
2222
with:
2323
submodules: recursive
24-
- uses: actions/setup-node@v3.5.1
24+
- uses: actions/setup-node@v3.6.0
2525
with:
2626
node-version: 16.x
2727
- name: Echo Node.js version

.github/workflows/development.yml

Lines changed: 2 additions & 2 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@v3.2.0
25+
- uses: actions/checkout@v3.5.0
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v3.5.1
29+
uses: actions/setup-node@v3.6.0
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info

.github/workflows/feature.yml

Lines changed: 2 additions & 2 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@v3.2.0
25+
- uses: actions/checkout@v3.5.0
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v3.5.1
29+
uses: actions/setup-node@v3.6.0
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info

.github/workflows/master.yml

Lines changed: 2 additions & 2 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@v3.2.0
25+
- uses: actions/checkout@v3.5.0
2626
with:
2727
submodules: recursive
2828
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
29-
uses: actions/setup-node@v3.5.1
29+
uses: actions/setup-node@v3.6.0
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- name: nodejs project info

.github/workflows/release.yml

Lines changed: 2 additions & 2 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@v3.2.0
29+
- uses: actions/checkout@v3.5.0
3030
with:
3131
submodules: recursive
3232
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
33-
uses: actions/setup-node@v3.5.1
33+
uses: actions/setup-node@v3.6.0
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636
registry-url: 'https://registry.npmjs.org/'

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
lint-staged
4+
npx lint-staged
55
npm test
66
npm run build

README.md

Lines changed: 3 additions & 3 deletions
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].19
41+
uses: gregoranders/[email protected].20
4242
- name: create release
4343
id: createrelease
44-
uses: gregoranders/[email protected].19
44+
uses: gregoranders/[email protected].20
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].19
53+
uses: gregoranders/[email protected].20
5454
env:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656
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.19 | :white_check_mark: |
7+
| 0.0.20 | :white_check_mark: |
8+
| 0.0.19 | :x: |
89
| 0.0.18 | :x: |
910
| 0.0.17 | :x: |
1011
| 0.0.13 | :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.

package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodejs-upload-asset",
3-
"version": "0.0.19",
3+
"version": "0.0.20",
44
"description": "NodeJS Upload Asset",
55
"main": "./dist/index.js",
66
"scripts": {
@@ -10,7 +10,7 @@
1010
"prebuild": "eslint ./src/**/*.ts && tsc --noEmit --project ./",
1111
"build": "cross-env NODE_ENV=production ncc build ./src/index.ts -m -o ./dist/",
1212
"lint": "markdownlint --config .mdlrc . && remark --frail --rc-path .remarkrc-full.mjs .",
13-
"pretest": "rimraf ./test/*",
13+
"pretest": "rimraf --glob ./test/*",
1414
"test": "jest",
1515
"watch": "tsc -w --project ./",
1616
"prepare": "husky install",
@@ -96,32 +96,32 @@
9696
"mime": "3.0.0"
9797
},
9898
"devDependencies": {
99-
"@commitlint/cli": "17.3.0",
100-
"@commitlint/config-conventional": "17.3.0",
101-
"@types/jest": "29.2.4",
99+
"@commitlint/cli": "17.6.3",
100+
"@commitlint/config-conventional": "17.6.3",
101+
"@types/jest": "29.5.1",
102102
"@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",
103+
"@typescript-eslint/eslint-plugin": "5.59.5",
104+
"@typescript-eslint/parser": "5.59.5",
105+
"@vercel/ncc": "0.36.1",
106106
"conventional-changelog-cli": "2.2.2",
107107
"cross-env": "7.0.3",
108108
"dictionary-en": "3.2.0",
109-
"eslint": "8.30.0",
110-
"eslint-config-prettier": "8.5.0",
111-
"eslint-plugin-jest": "27.1.7",
109+
"eslint": "8.40.0",
110+
"eslint-config-prettier": "8.8.0",
111+
"eslint-plugin-jest": "27.2.1",
112112
"eslint-plugin-prettier": "4.2.1",
113-
"eslint-plugin-unicorn": "45.0.2",
113+
"eslint-plugin-unicorn": "47.0.0",
114114
"generate-changelog": "1.8.0",
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",
115+
"husky": "8.0.3",
116+
"jest": "29.5.0",
117+
"jest-cli": "29.5.0",
118+
"jest-html-reporter": "3.9.0",
119+
"jest-junit": "16.0.0",
120120
"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",
121+
"lint-staged": "13.2.2",
122+
"markdownlint": "0.28.2",
123+
"markdownlint-cli": "0.34.0",
124+
"prettier": "2.8.8",
125125
"remark-cli": "11.0.0",
126126
"remark-frontmatter": "4.0.1",
127127
"remark-lint": "9.1.1",
@@ -134,12 +134,12 @@
134134
"remark-preset-lint-markdown-style-guide": "5.1.2",
135135
"remark-preset-lint-recommended": "6.1.2",
136136
"remark-retext": "5.0.1",
137-
"remark-validate-links": "12.1.0",
137+
"remark-validate-links": "12.1.1",
138138
"retext-contractions": "5.2.0",
139139
"retext-diacritics": "4.2.0",
140140
"retext-english": "4.1.0",
141-
"retext-equality": "6.6.0",
142-
"retext-indefinite-article": "4.1.0",
141+
"retext-equality": "6.7.0",
142+
"retext-indefinite-article": "4.3.0",
143143
"retext-passive": "4.2.0",
144144
"retext-profanities": "7.2.2",
145145
"retext-quotes": "5.2.0",
@@ -150,8 +150,8 @@
150150
"retext-spell": "5.3.0",
151151
"retext-syntax-urls": "3.1.2",
152152
"retext-usage": "0.5.0",
153-
"rimraf": "3.0.2",
154-
"ts-jest": "29.0.3",
155-
"typescript": "4.9.4"
153+
"rimraf": "5.0.0",
154+
"ts-jest": "29.1.0",
155+
"typescript": "5.0.4"
156156
}
157157
}

0 commit comments

Comments
 (0)