Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: updates regarding dependabot issues. node 18 workflow & engine update #229

Merged
merged 14 commits into from
Mar 16, 2023
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-title-preview-ignoreLabels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- run: yarn install
- run: yarn build
- uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-title-preview-outputErrorMessage
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- run: yarn install
- run: yarn build
- uses: ./
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- run: yarn install
- run: yarn build
- uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-title-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- run: yarn install
- run: yarn build
- uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- uses: ./
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- run: yarn install
- run: yarn build
- run: yarn semantic-release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
- run: yarn install
- run: yarn lint && yarn test

Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@
"homepage": "https://github.com/amannn/action-semantic-pull-request#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.0",
"conventional-changelog-conventionalcommits": "4.5.0",
"@actions/github": "^5.1.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^3.2.4"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.0",
"@semantic-release/release-notes-generator": "9.0.3",
"@vercel/ncc": "^0.27.0",
"eslint": "7.9.0",
"eslint-config-molindo": "5.1.1",
"jest": "27.4.7",
"semantic-release": "19.0.2"
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/release-notes-generator": "10.0.3",
"@vercel/ncc": "^0.36.1",
"eslint": "8.36.0",
"eslint-config-molindo": "6.0.0",
"jest": "29.5.0",
"semantic-release": "20.1.1"
EelcoLos marked this conversation as resolved.
Show resolved Hide resolved
},
"engines": {
"node": "^16.0.0"
"node": "^18.0.0"
EelcoLos marked this conversation as resolved.
Show resolved Hide resolved
}
}