Skip to content

Commit ca264e0

Browse files
authored
feat: Upgrade [email protected] (#155)
* upgraded to node@16 * https://github.com/semantic-release/semantic-release/releases/tag/v19.0.0 BREAKING CHANGE: dropped support for node <=15
1 parent 536f681 commit ca264e0

File tree

8 files changed

+1390
-1927
lines changed

8 files changed

+1390
-1927
lines changed

.github/workflows/lint-pr-title-preview-validateSingleCommit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
14+
- uses: actions/setup-node@v2
1515
with:
16-
node-version: 12
16+
node-version: 16
1717
- run: yarn install
1818
- run: yarn build
1919
- uses: ./

.github/workflows/lint-pr-title-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
14+
- uses: actions/setup-node@v2
1515
with:
16-
node-version: 12
16+
node-version: 16
1717
- run: yarn install
1818
- run: yarn build
1919
- uses: ./

.github/workflows/lint-pr-title.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
14+
- uses: actions/setup-node@v2
1515
with:
16-
node-version: 12
16+
node-version: 16
1717
- uses: ./
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v1
12-
- uses: actions/setup-node@v1
12+
- uses: actions/setup-node@v2
1313
with:
14-
node-version: 12
14+
node-version: 16
1515
- run: yarn install
1616
- run: yarn build
1717
- run: yarn semantic-release

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
14+
- uses: actions/setup-node@v2
1515
with:
16-
node-version: 12
16+
node-version: 16
1717
- run: yarn install
1818
- run: yarn lint && yarn test

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ To do this, please follow this process:
1414
2. Create a PR in **your own repo**.
1515
3. The "Lint PR title preview (current branch)" workflow will run the new version and will help you validate the change.
1616
4. Create a PR to this repo with the changes. In this case the preview workflow will fail, but we'll know that it works since you tested it in the fork. Please include a include a link to a workflow where you tested the current state of this pull request.
17+
5. Don't run `npm run build` to update the `dist` folder as it will be generated on CI during the build

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
"eslint": "7.9.0",
4040
"eslint-config-molindo": "5.0.1",
4141
"jest": "24.9.0",
42-
"semantic-release": "17.3.0"
42+
"semantic-release": "19.0.2"
4343
},
4444
"engines": {
45-
"node": "^12.0.0"
45+
"node": "^16.0.0"
4646
}
4747
}

0 commit comments

Comments
 (0)