Skip to content

Upgrade to Node 20 for 2.0.0 #59

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

Merged
merged 1 commit into from
Jan 12, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/dependency-submission-example.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
- name: Install NPM dependencies
run: npm ci
- name: Run all NPM build/test actions
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm test
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
- name: Install NPM dependencies
run: npm ci
- name: Run all NPM build/test actions
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -10,5 +10,5 @@ inputs:
required: true
default: './'
runs:
using: 'node16'
using: 'node20'
main: 'example/dist/index.js'
4 changes: 2 additions & 2 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@github/dependency-submission-toolkit",
"version": "1.2.9",
"version": "2.0.0",
"description": "A TypeScript library for creating dependency snapshots.",
"homepage": "https://github.com/github/dependency-submission-toolkit",
"bugs": {
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
@@ -8,6 +8,6 @@ export default defineConfig({
minify: true,
sourcemap: true,
splitting: true,
target: 'node16',
target: 'node20',
treeshake: true
})