Skip to content

Commit

Permalink
Merge pull request #291 from gregoranders/development
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
gregoranders authored Dec 28, 2022
2 parents 2cc1b0c + 0841cf1 commit 3afa387
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 62 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: "CodeQL"
name: 'CodeQL'
on:
push:
branches: [ main, development, feature/* ]
branches: [main, development, feature/*]
pull_request:
branches: [ main, development, feature/* ]
branches: [main, development, feature/*]
schedule:
- cron: '43 7 * * 0'
jobs:
Expand All @@ -16,21 +16,21 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
language: ['javascript']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.2.0
with:
submodules: recursive
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3.5.1
with:
node-version: 16.x
- name: Echo Node.js version
run: node --version
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
8 changes: 4 additions & 4 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@v2
- uses: actions/checkout@v3.2.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3.5.1
with:
node-version: ${{ matrix.node-version }}
- name: nodejs project info
Expand All @@ -49,15 +49,15 @@ jobs:
path-to-lcov: ./test/coverage/lcov.info
- name: publish code coverage to code climate
if: matrix.os == 'ubuntu-latest'
uses: paambaati/codeclimate-action@v3.0.0
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm test
coverageLocations: |
./test/coverage/lcov.info:lcov
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v1
uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
check_name: Unit Test Results node${{ matrix.node-version }}-${{ matrix.os }}
files: test/junit.xml
8 changes: 4 additions & 4 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@v2
- uses: actions/checkout@v3.2.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3.5.1
with:
node-version: ${{ matrix.node-version }}
- name: nodejs project info
Expand All @@ -49,15 +49,15 @@ jobs:
path-to-lcov: ./test/coverage/lcov.info
- name: publish code coverage to code climate
if: matrix.os == 'ubuntu-latest'
uses: paambaati/codeclimate-action@v3.0.0
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm test
coverageLocations: |
./test/coverage/lcov.info:lcov
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v1
uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
check_name: Unit Test Results node${{ matrix.node-version }}-${{ matrix.os }}
files: test/junit.xml
8 changes: 4 additions & 4 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@v2
- uses: actions/checkout@v3.2.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3.5.1
with:
node-version: ${{ matrix.node-version }}
- name: nodejs project info
Expand All @@ -49,15 +49,15 @@ jobs:
path-to-lcov: ./test/coverage/lcov.info
- name: publish code coverage to code climate
if: matrix.os == 'ubuntu-latest'
uses: paambaati/codeclimate-action@v3.0.0
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm test
coverageLocations: |
./test/coverage/lcov.info:lcov
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v1
uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
check_name: Unit Test Results node${{ matrix.node-version }}-${{ matrix.os }}
files: test/junit.xml
Expand Down
6 changes: 3 additions & 3 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@v2
- uses: actions/checkout@v3.2.0
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3.5.1
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org/'
Expand All @@ -54,7 +54,7 @@ jobs:
path-to-lcov: ./test/coverage/lcov.info
- name: publish code coverage to code climate
if: matrix.os == 'ubuntu-latest'
uses: paambaati/codeclimate-action@v3.0.0
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.14.0
16.19.0
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
## [0.0.19](https://github.com/gregoranders/nodejs-create-release/compare/v0.0.18...v0.0.19) (2022-12-28)

### [0.0.18](https://github.com/gregoranders/nodejs-create-release/compare/v0.0.17...v0.0.18) (2022-02-26)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ This action finds or creates a release, so your workflow can access it.
...
- name: nodejs project information
id: projectinfo
uses: gregoranders/[email protected].18
uses: gregoranders/[email protected].19
- name: create release
id: createrelease
uses: gregoranders/[email protected].18
uses: gregoranders/[email protected].19
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.18 | :white_check_mark: |
| 0.0.19 | :white_check_mark: |
| 0.0.18 | :x: |
| 0.0.17 | :x: |
| 0.0.16 | :x: |
| 0.0.15 | :x: |
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js

Large diffs are not rendered by default.

65 changes: 33 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodejs-create-release",
"version": "0.0.18",
"version": "0.0.19",
"description": "NodeJS Create Release",
"main": "./dist/index.js",
"scripts": {
Expand Down Expand Up @@ -94,37 +94,38 @@
},
"homepage": "https://gregoranders.github.io/nodejs-create-release/",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "5.0.0",
"@octokit/rest": "18.12.0"
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@octokit/rest": "19.0.5"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@types/semver": "7.3.9",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"@vercel/ncc": "0.33.3",
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@types/jest": "29.2.4",
"@types/semver": "7.3.13",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"@vercel/ncc": "0.36.0",
"conventional-changelog-cli": "2.2.2",
"cross-env": "7.0.3",
"dictionary-en": "3.1.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unicorn": "41.0.0",
"dictionary-en": "3.2.0",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "45.0.2",
"generate-changelog": "1.8.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-cli": "27.5.1",
"jest-html-reporter": "3.4.2",
"jest-junit": "13.0.0",
"jest-spec-reporter": "1.0.17",
"lint-staged": "12.3.4",
"markdownlint": "0.25.1",
"markdownlint-cli": "0.31.1",
"prettier": "2.5.1",
"remark-cli": "10.0.1",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-cli": "29.3.1",
"jest-html-reporter": "3.7.0",
"jest-junit": "15.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",
"remark-cli": "11.0.0",
"remark-frontmatter": "4.0.1",
"remark-lint": "9.1.1",
"remark-lint-heading-whitespace": "1.0.0",
Expand All @@ -136,24 +137,24 @@
"remark-preset-lint-markdown-style-guide": "5.1.2",
"remark-preset-lint-recommended": "6.1.2",
"remark-retext": "5.0.1",
"remark-validate-links": "11.0.2",
"remark-validate-links": "12.1.0",
"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-passive": "4.2.0",
"retext-profanities": "7.2.0",
"retext-profanities": "7.2.2",
"retext-quotes": "5.2.0",
"retext-readability": "7.2.0",
"retext-redundant-acronyms": "4.3.0",
"retext-repeated-words": "4.2.0",
"retext-sentence-spacing": "5.2.0",
"retext-spell": "5.1.0",
"retext-spell": "5.3.0",
"retext-syntax-urls": "3.1.2",
"retext-usage": "0.5.0",
"rimraf": "3.0.2",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
"ts-jest": "29.0.3",
"typescript": "4.9.4"
}
}

0 comments on commit 3afa387

Please sign in to comment.