Skip to content

Commit

Permalink
Merge pull request #298 from gregoranders/development
Browse files Browse the repository at this point in the history
0.0.20 release
  • Loading branch information
gregoranders authored May 13, 2023
2 parents d33f719 + 5c0dd5d commit f5a917e
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 44 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
matrix:
language: ['javascript']
steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.5.0
with:
submodules: recursive
- uses: actions/setup-node@v3.5.1
- uses: actions/setup-node@v3.6.0
with:
node-version: 16.x
- name: Echo Node.js version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.5.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
- name: nodejs project info
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.5.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
- name: nodejs project info
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.5.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
- name: nodejs project info
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.5.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org/'
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

lint-staged
npx lint-staged
npm test
npm run build
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ This action uploads an asset to a release, so your workflow can access it.
...
- name: nodejs project information
id: projectinfo
uses: gregoranders/[email protected].19
uses: gregoranders/[email protected].20
- name: create release
id: createrelease
uses: gregoranders/[email protected].19
uses: gregoranders/[email protected].20
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -50,7 +50,7 @@ This action uploads an asset to a release, so your workflow can access it.
target: ${{ github.ref }}
- name: upload asset
id: uploadasset
uses: gregoranders/[email protected].19
uses: gregoranders/[email protected].20
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
3 changes: 2 additions & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

| Version | Supported |
| :------ | :----------------: |
| 0.0.19 | :white_check_mark: |
| 0.0.20 | :white_check_mark: |
| 0.0.19 | :x: |
| 0.0.18 | :x: |
| 0.0.17 | :x: |
| 0.0.13 | :x: |
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js

Large diffs are not rendered by default.

54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodejs-upload-asset",
"version": "0.0.19",
"version": "0.0.20",
"description": "NodeJS Upload Asset",
"main": "./dist/index.js",
"scripts": {
Expand All @@ -10,7 +10,7 @@
"prebuild": "eslint ./src/**/*.ts && tsc --noEmit --project ./",
"build": "cross-env NODE_ENV=production ncc build ./src/index.ts -m -o ./dist/",
"lint": "markdownlint --config .mdlrc . && remark --frail --rc-path .remarkrc-full.mjs .",
"pretest": "rimraf ./test/*",
"pretest": "rimraf --glob ./test/*",
"test": "jest",
"watch": "tsc -w --project ./",
"prepare": "husky install",
Expand Down Expand Up @@ -96,32 +96,32 @@
"mime": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@types/jest": "29.2.4",
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@types/jest": "29.5.1",
"@types/mime": "3.0.1",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"@vercel/ncc": "0.36.0",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"@vercel/ncc": "0.36.1",
"conventional-changelog-cli": "2.2.2",
"cross-env": "7.0.3",
"dictionary-en": "3.2.0",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.1.7",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "45.0.2",
"eslint-plugin-unicorn": "47.0.0",
"generate-changelog": "1.8.0",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-cli": "29.3.1",
"jest-html-reporter": "3.7.0",
"jest-junit": "15.0.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-cli": "29.5.0",
"jest-html-reporter": "3.9.0",
"jest-junit": "16.0.0",
"jest-spec-reporter": "1.0.19",
"lint-staged": "13.1.0",
"markdownlint": "0.27.0",
"markdownlint-cli": "0.32.2",
"prettier": "2.8.1",
"lint-staged": "13.2.2",
"markdownlint": "0.28.2",
"markdownlint-cli": "0.34.0",
"prettier": "2.8.8",
"remark-cli": "11.0.0",
"remark-frontmatter": "4.0.1",
"remark-lint": "9.1.1",
Expand All @@ -134,12 +134,12 @@
"remark-preset-lint-markdown-style-guide": "5.1.2",
"remark-preset-lint-recommended": "6.1.2",
"remark-retext": "5.0.1",
"remark-validate-links": "12.1.0",
"remark-validate-links": "12.1.1",
"retext-contractions": "5.2.0",
"retext-diacritics": "4.2.0",
"retext-english": "4.1.0",
"retext-equality": "6.6.0",
"retext-indefinite-article": "4.1.0",
"retext-equality": "6.7.0",
"retext-indefinite-article": "4.3.0",
"retext-passive": "4.2.0",
"retext-profanities": "7.2.2",
"retext-quotes": "5.2.0",
Expand All @@ -150,8 +150,8 @@
"retext-spell": "5.3.0",
"retext-syntax-urls": "3.1.2",
"retext-usage": "0.5.0",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
"rimraf": "5.0.0",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
}
}

0 comments on commit f5a917e

Please sign in to comment.