Skip to content

Commit

Permalink
drop node 16 support from CLI tools (#812)
Browse files Browse the repository at this point in the history
Signed-off-by: Brian DeHamer <bdehamer@github.com>
  • Loading branch information
bdehamer authored Oct 17, 2023
1 parent 4948e9a commit 4cd344d
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .changeset/weak-zebras-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@sigstore/conformance': minor
'@sigstore/mock-server': minor
'@sigstore/cli': minor
---

Drop support for node 16
2 changes: 1 addition & 1 deletion .github/workflows/compatibility-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: 16
node-version: 18
cache: npm
- name: Install CLI
run: npm install -g @sigstore/cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: 16
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: 16
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: 16
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@
"topicSeparator": " "
},
"engines": {
"node": "^16.14.0 || >=18.0.0"
"node": ">=18.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/conformance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"topicSeparator": " "
},
"engines": {
"node": "^16.14.0 || >=18.0.0"
"node": ">=18.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/mock-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"commands": "./dist"
},
"engines": {
"node": "^16.14.0 || >=18.0.0"
"node": ">=18.0.0"
}
}

0 comments on commit 4cd344d

Please sign in to comment.