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

drop node 16 support from CLI tools #812

Merged
merged 2 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
}