Use Node 24 (#329)

* Use Node 24

* fix: update package lock with node v24

---------

Co-authored-by: imranismail <hey@imranismail.dev>
This commit is contained in:
mattcontinisio
2026-03-17 07:51:59 -04:00
committed by GitHub
parent 049197ab4e
commit 53f941b41d
7 changed files with 847 additions and 295 deletions

View File

@@ -1 +1 @@
nodejs 20.8.1
nodejs 24.14.0

View File

@@ -35,6 +35,22 @@ describe('installer tests', () => {
}
})
it('Acquires kustomize version 5.8.1', async () => {
await installer.getKustomize('5.8.1')
const kustomizeDir = path.join(toolDir, 'kustomize', '5.8.1', os.arch())
expect(fs.existsSync(`${kustomizeDir}.complete`)).toBe(true)
if (IS_WINDOWS) {
expect(fs.existsSync(path.join(kustomizeDir, 'kustomize.exe'))).toBe(true)
} else {
expect(fs.existsSync(path.join(kustomizeDir, 'kustomize'))).toBe(true)
expect(() =>
fs.accessSync(path.join(kustomizeDir, 'kustomize'), fs.constants.X_OK)
).not.toThrow()
}
})
it('Acquires kustomize version 5.2.1', async () => {
await installer.getKustomize('5.2.1')
const kustomizeDir = path.join(toolDir, 'kustomize', '5.2.1', os.arch())

View File

@@ -18,5 +18,5 @@ inputs:
required: false
default: 'true'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'

1072
dist/index.js vendored

File diff suppressed because it is too large Load Diff

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

20
package-lock.json generated
View File

@@ -18,7 +18,7 @@
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.8",
"@types/node": "^24.12.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^6.9.0",
"@vercel/ncc": "^0.38.1",
@@ -1636,12 +1636,13 @@
"dev": true
},
"node_modules/@types/node": {
"version": "20.8.8",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz",
"integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==",
"version": "24.12.0",
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.0.tgz",
"integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"undici-types": "~5.25.1"
"undici-types": "~7.16.0"
}
},
"node_modules/@types/semver": {
@@ -6935,10 +6936,11 @@
}
},
"node_modules/undici-types": {
"version": "5.25.3",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz",
"integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==",
"dev": true
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
"integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
"dev": true,
"license": "MIT"
},
"node_modules/universal-user-agent": {
"version": "6.0.0",

View File

@@ -34,7 +34,7 @@
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.8",
"@types/node": "^24.12.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^6.9.0",
"@vercel/ncc": "^0.38.1",