mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 00:06:54 +00:00
Merge pull request #751 from wagoid/chore/upgrade-commitlint-to-18
chore(deps): upgrade commitlint packages to 18
This commit is contained in:
commit
a36e8931bd
7 changed files with 2429 additions and 587 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16.5.0'
|
||||
node-version: '20.9.0'
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16.5.0'
|
||||
node-version: '20.9.0'
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
|
|
|
|||
4
.github/workflows/commitlint.yml
vendored
4
.github/workflows/commitlint.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
- run: echo -n '' > .dockerignore
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16.5.0'
|
||||
node-version: '20.9.0'
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
|
|
@ -33,7 +33,7 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16.5.0'
|
||||
node-version: '20.9.0'
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
|
|
|
|||
2
.nvmrc
2
.nvmrc
|
|
@ -1 +1 @@
|
|||
16.5.0
|
||||
20.9.0
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ COPY . .
|
|||
|
||||
RUN npm run build
|
||||
|
||||
FROM node:16.5.0-alpine3.14
|
||||
FROM node:20.9.0-alpine3.17
|
||||
|
||||
RUN apk --no-cache add git
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"presets": [["@babel/preset-env"]],
|
||||
"targets": {
|
||||
"node": "16.5.0"
|
||||
"node": "20.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
2969
package-lock.json
generated
2969
package-lock.json
generated
File diff suppressed because it is too large
Load diff
33
package.json
33
package.json
|
|
@ -22,20 +22,20 @@
|
|||
"license": "ISC",
|
||||
"homepage": "https://github.com/wagoid/commitlint-github-action",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.10.0",
|
||||
"@actions/github": "^5.1.1",
|
||||
"@commitlint/config-angular": "^17.1.0",
|
||||
"@commitlint/config-conventional": "^17.1.0",
|
||||
"@commitlint/config-lerna-scopes": "^17.0.2",
|
||||
"@commitlint/config-patternplate": "^17.1.0",
|
||||
"@commitlint/ensure": "^17.0.0",
|
||||
"@commitlint/format": "^17.0.0",
|
||||
"@commitlint/lint": "^17.1.0",
|
||||
"@commitlint/load": "^17.1.2",
|
||||
"@actions/core": "^1.10.1",
|
||||
"@actions/github": "^6.0.0",
|
||||
"@commitlint/config-angular": "^18.1.0",
|
||||
"@commitlint/config-conventional": "^18.1.0",
|
||||
"@commitlint/config-lerna-scopes": "^18.1.0",
|
||||
"@commitlint/config-patternplate": "^18.1.0",
|
||||
"@commitlint/ensure": "^18.1.0",
|
||||
"@commitlint/format": "^18.1.0",
|
||||
"@commitlint/lint": "^18.1.0",
|
||||
"@commitlint/load": "^18.2.0",
|
||||
"commitlint-config-jira": "^1.6.4",
|
||||
"commitlint-plugin-function-rules": "^1.7.1",
|
||||
"commitlint-plugin-function-rules": "^2.0.2",
|
||||
"commitlint-plugin-jira-rules": "^1.6.4",
|
||||
"conventional-changelog-conventionalcommits": "^4.6.3",
|
||||
"conventional-changelog-conventionalcommits": "^7.0.2",
|
||||
"conventional-changelog-lint-config-canonical": "^1.0.0",
|
||||
"dargs": "^8.1.0",
|
||||
"lerna": "^5.1.4"
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
"devDependencies": {
|
||||
"@babel/core": "^7.19.3",
|
||||
"@babel/preset-env": "^7.19.3",
|
||||
"@commitlint/cli": "^17.4.3",
|
||||
"@commitlint/cli": "^18.2.0",
|
||||
"@commitlint/test": "^9.0.1",
|
||||
"@commitlint/test-environment": "^9.0.1",
|
||||
"@jest/globals": "^29.4.2",
|
||||
|
|
@ -51,8 +51,8 @@
|
|||
"@rollup/plugin-commonjs": "^22.0.2",
|
||||
"@rollup/plugin-node-resolve": "^14.1.0",
|
||||
"babel-jest": "^29.4.3",
|
||||
"commit-and-tag-version": "^11.1.0",
|
||||
"conventional-changelog-cli": "^2.2.2",
|
||||
"commit-and-tag-version": "^12.0.0",
|
||||
"conventional-changelog-cli": "^4.1.0",
|
||||
"eslint": "^8.34.0",
|
||||
"eslint-config-airbnb-base": "^15.0.0",
|
||||
"eslint-config-node": "^4.1.0",
|
||||
|
|
@ -67,5 +67,8 @@
|
|||
"rollup": "^2.79.1",
|
||||
"testdouble": "^3.16.8",
|
||||
"yaml": "^2.1.3"
|
||||
},
|
||||
"overrides": {
|
||||
"@commitlint/lint": "^18.1.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue