mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 16:06:56 +00:00
Merge pull request #55 from wagoid/chore/upgrade-dependencies
chore: upgrade dependencies
This commit is contained in:
commit
90ed56db73
4 changed files with 1569 additions and 757 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -28,6 +28,8 @@ jobs:
|
||||||
DOCKER_REGISTRY_URL: registry.hub.docker.com
|
DOCKER_REGISTRY_URL: registry.hub.docker.com
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '12.x'
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,10 @@ All notable changes to this project will be documented in this file. See [standa
|
||||||
|
|
||||||
### 2.0.3 (2020-09-14)
|
### 2.0.3 (2020-09-14)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- use config-conventional as default config ([7e67891](https://github.com/wagoid/commitlint-github-action/commit/7e678913ff14e04ef128e3d06523eabd0df4d639))
|
||||||
|
|
||||||
### 2.0.2 (2020-08-22)
|
### 2.0.2 (2020-08-22)
|
||||||
|
|
||||||
## [2.0.1](https://github.com/wagoid/commitlint-github-action/compare/v2.0.0...v2.0.1) (2020-08-20)
|
## [2.0.1](https://github.com/wagoid/commitlint-github-action/compare/v2.0.0...v2.0.1) (2020-08-20)
|
||||||
|
|
|
||||||
2294
package-lock.json
generated
2294
package-lock.json
generated
File diff suppressed because it is too large
Load diff
26
package.json
26
package.json
|
|
@ -16,32 +16,32 @@
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"homepage": "https://github.com/wagoid/commitlint-github-action",
|
"homepage": "https://github.com/wagoid/commitlint-github-action",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.2.4",
|
"@actions/core": "^1.2.5",
|
||||||
"@actions/github": "^1.1.0",
|
"@actions/github": "^1.1.0",
|
||||||
"@commitlint/config-angular": "^9.1.1",
|
"@commitlint/config-angular": "^9.1.2",
|
||||||
"@commitlint/config-conventional": "^9.1.1",
|
"@commitlint/config-conventional": "^9.1.2",
|
||||||
"@commitlint/config-lerna-scopes": "^9.1.1",
|
"@commitlint/config-lerna-scopes": "^9.1.2",
|
||||||
"@commitlint/config-patternplate": "^9.1.1",
|
"@commitlint/config-patternplate": "^9.1.2",
|
||||||
"@commitlint/format": "^9.1.1",
|
"@commitlint/format": "^9.1.2",
|
||||||
"@commitlint/lint": "^9.1.1",
|
"@commitlint/lint": "^9.1.2",
|
||||||
"@commitlint/load": "^9.1.1",
|
"@commitlint/load": "^9.1.2",
|
||||||
"commitlint-config-jira": "^1.4.1",
|
"commitlint-config-jira": "^1.4.1",
|
||||||
"commitlint-plugin-jira-rules": "^1.4.0",
|
"commitlint-plugin-jira-rules": "^1.4.0",
|
||||||
"conventional-changelog-lint-config-canonical": "^1.0.0",
|
"conventional-changelog-lint-config-canonical": "^1.0.0",
|
||||||
"dargs": "^7.0.0",
|
"dargs": "^7.0.0",
|
||||||
"execa": "^4.0.3",
|
"execa": "^4.0.3",
|
||||||
"lerna": "^3.18.1"
|
"lerna": "^3.22.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/test": "^9.0.1",
|
"@commitlint/test": "^9.0.1",
|
||||||
"@commitlint/test-environment": "^9.0.1",
|
"@commitlint/test-environment": "^9.0.1",
|
||||||
"conventional-changelog-cli": "^2.0.23",
|
"conventional-changelog-cli": "^2.1.0",
|
||||||
"husky": "^3.0.7",
|
"husky": "^3.1.0",
|
||||||
"jest": "^24.9.0",
|
"jest": "^24.9.0",
|
||||||
"prettier": "^1.18.2",
|
"prettier": "^1.19.1",
|
||||||
"pretty-quick": "^1.11.1",
|
"pretty-quick": "^1.11.1",
|
||||||
"standard-version": "^9.0.0",
|
"standard-version": "^9.0.0",
|
||||||
"testdouble": "^3.12.4",
|
"testdouble": "^3.16.1",
|
||||||
"yaml": "^1.10.0"
|
"yaml": "^1.10.0"
|
||||||
},
|
},
|
||||||
"husky": {
|
"husky": {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue