Skip to content

Commit 752cda5

Browse files
author
Federico Builes
committedJan 12, 2024
upgrade to Node 20
1 parent 39c8d88 commit 752cda5

7 files changed

+8
-8
lines changed
 

‎.github/workflows/dependency-submission-example.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 16
15+
node-version: 20
1616
- name: Install NPM dependencies
1717
run: npm ci
1818
- name: Run all NPM build/test actions

‎.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: 16
14+
node-version: 20
1515
registry-url: https://registry.npmjs.org
1616
- run: npm ci
1717
- run: npm test

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 16
20+
node-version: 20
2121
- name: Install NPM dependencies
2222
run: npm ci
2323
- name: Run all NPM build/test actions

‎action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ inputs:
1010
required: true
1111
default: './'
1212
runs:
13-
using: 'node16'
13+
using: 'node20'
1414
main: 'example/dist/index.js'

‎package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@github/dependency-submission-toolkit",
3-
"version": "1.2.9",
3+
"version": "2.0.0",
44
"description": "A TypeScript library for creating dependency snapshots.",
55
"homepage": "https://github.com/github/dependency-submission-toolkit",
66
"bugs": {

‎tsup.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export default defineConfig({
88
minify: true,
99
sourcemap: true,
1010
splitting: true,
11-
target: 'node16',
11+
target: 'node20',
1212
treeshake: true
1313
})

0 commit comments

Comments
 (0)
Please sign in to comment.