Skip to content

Commit

Permalink
fix(deps): set peerDependencies semantic-release to >=18.0.0
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Now min version of semantic-release is 18.0.0
  • Loading branch information
lgaticaq committed Feb 11, 2022
1 parent 4fbb07f commit 2a2a53e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14.19.0', '16.14.0', '17.4.0']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.17.0'
node-version: ${{ matrix.node }}
- uses: actions/cache@v2
with:
path: ~/.npm
Expand Down Expand Up @@ -40,7 +43,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.17.0'
node-version: '17.4.0'
- uses: actions/cache@v2
with:
path: ~/.npm
Expand Down Expand Up @@ -71,7 +74,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.17.0'
node-version: '17.4.0'
- uses: actions/cache@v2
with:
path: ~/.npm
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@
"typescript": "4.5.4"
},
"peerDependencies": {
"semantic-release": ">=11.0.0 <19.0.0"
"semantic-release": ">=18.0.0"
}
}

0 comments on commit 2a2a53e

Please sign in to comment.