Skip to content

Commit 9de2e29

Browse files
authored
Update deps (#337)
1 parent 8e574c4 commit 9de2e29

File tree

8 files changed

+193
-211
lines changed

8 files changed

+193
-211
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@ branding:
118118

119119
runs:
120120
using: 'node20'
121-
main: 'dist/index.js'
121+
main: 'dist/main/index.js'

dist/index.js

Lines changed: 0 additions & 5 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

dist/main/index.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 173 additions & 191 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"description": "Get short lived credentials to a GKE cluster",
55
"main": "dist/index.js",
66
"scripts": {
7-
"build": "ncc build -m src/main.ts",
7+
"build": "rm -rf dist/ && ncc build -m src/main.ts -o dist/main",
88
"docs": "./node_modules/.bin/actions-gen-readme",
99
"lint": "eslint .",
1010
"format": "eslint . --fix",
1111
"test": "bash ./bin/runTests.sh"
1212
},
1313
"engines": {
14-
"node": "20.x",
15-
"npm": "10.x"
14+
"node": ">= 20.x",
15+
"npm": ">= 11.x"
1616
},
1717
"repository": {
1818
"type": "git",
@@ -29,24 +29,24 @@
2929
"license": "Apache-2.0",
3030
"dependencies": {
3131
"@actions/core": "^1.11.1",
32-
"@google-github-actions/actions-utils": "^0.8.8",
33-
"google-auth-library": "^10.1.0",
34-
"yaml": "^2.8.0"
32+
"@google-github-actions/actions-utils": "^0.8.10",
33+
"google-auth-library": "^10.3.0",
34+
"yaml": "^2.8.1"
3535
},
3636
"devDependencies": {
3737
"@eslint/eslintrc": "^3.3.1",
38-
"@eslint/js": "^9.31.0",
38+
"@eslint/js": "^9.34.0",
3939
"@kubernetes/client-node": "^1.3.0",
40-
"@types/node": "^24.0.14",
41-
"@typescript-eslint/eslint-plugin": "^8.37.0",
42-
"@typescript-eslint/parser": "^8.37.0",
40+
"@types/node": "^24.3.0",
41+
"@typescript-eslint/eslint-plugin": "^8.42.0",
42+
"@typescript-eslint/parser": "^8.42.0",
4343
"@vercel/ncc": "^0.38.3",
4444
"eslint-config-prettier": "^10.1.8",
45-
"eslint-plugin-prettier": "^5.5.3",
46-
"eslint": "^9.31.0",
45+
"eslint-plugin-prettier": "^5.5.4",
46+
"eslint": "^9.34.0",
4747
"prettier": "^3.6.2",
4848
"ts-node": "^10.9.2",
49-
"typescript-eslint": "^8.37.0",
50-
"typescript": "^5.8.3"
49+
"typescript-eslint": "^8.42.0",
50+
"typescript": "^5.9.2"
5151
}
5252
}

0 commit comments

Comments
 (0)