Skip to content

Commit

Permalink
feat: drop Node.js v14 and v16 (#880)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop Node.js v14 and v16
  • Loading branch information
3846masa committed Jan 14, 2024
1 parent f0877f9 commit c7e5e0b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/default.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version: "16"
node-version-file: .node-version
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["14", "16", "18"]
node: ["18", "20"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
ssh-key: ${{ secrets.DEPLOY_GIT_SSH_PRIVATE_KEY }}
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
with:
node-version: "16"
node-version-file: .node-version
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn patch-package
Expand Down
1 change: 1 addition & 0 deletions .node-version
@@ -0,0 +1 @@
18.19.0
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -55,7 +55,7 @@
}
},
"dependencies": {
"http-cookie-agent": "^5.0.4"
"http-cookie-agent": "^6.0.1"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#ea36c5c02c9eb0a4f83e2c5ac448ebc3ae52568b",
Expand All @@ -78,7 +78,7 @@
"tough-cookie": ">=4.0.0"
},
"engines": {
"node": ">=14.18.0 <15.0.0 || >=16.0.0"
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
Expand Down
9 changes: 4 additions & 5 deletions yarn.lock
Expand Up @@ -4,7 +4,6 @@

"@3846masa/configs@github:3846masa/configs#ea36c5c02c9eb0a4f83e2c5ac448ebc3ae52568b":
version "1.0.288"
uid ea36c5c02c9eb0a4f83e2c5ac448ebc3ae52568b
resolved "https://codeload.github.com/3846masa/configs/tar.gz/ea36c5c02c9eb0a4f83e2c5ac448ebc3ae52568b"
dependencies:
"@tsconfig/strictest" "2.0.2"
Expand Down Expand Up @@ -2695,10 +2694,10 @@ http-cache-semantics@^4.1.0:
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390"
integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==

http-cookie-agent@^5.0.4:
version "5.0.4"
resolved "https://registry.yarnpkg.com/http-cookie-agent/-/http-cookie-agent-5.0.4.tgz#b2dd3ba44f54f5c49387baac042c00ebba1216ae"
integrity sha512-OtvikW69RvfyP6Lsequ0fN5R49S+8QcS9zwd58k6VSr6r57T8G29BkPdyrBcSwLq6ExLs9V+rBlfxu7gDstJag==
http-cookie-agent@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/http-cookie-agent/-/http-cookie-agent-6.0.1.tgz#7a7b73f3f3a1a0e10d31e2efcb9a6c849e2aa6e9"
integrity sha512-AhPCqG7i3K8OVWORyuULoP7/Xv90wf14jBAKyLqjKpaJyGjutiwryYV+Lj1jqPYnQtbQFimwSaeY7NXw22TckQ==
dependencies:
agent-base "^7.1.0"

Expand Down

0 comments on commit c7e5e0b

Please sign in to comment.