Skip to content

Commit edc1579

Browse files
committed
Update deps
1 parent 50ec04d commit edc1579

File tree

7 files changed

+137
-153
lines changed

7 files changed

+137
-153
lines changed

action.yml

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

115115
runs:
116116
using: 'node20'
117-
main: 'dist/index.js'
117+
main: 'dist/main/index.js'

dist/index.js renamed to dist/main/index.js

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

package-lock.json

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

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"description": "Get Secret Manager secrets GitHub action",
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,9 +29,8 @@
2929
"dependencies": {
3030
"@actions/core": "^1.11.1",
3131
"@actions/http-client": "^2.2.3",
32-
"@google-github-actions/actions-utils": "^0.8.8",
33-
"google-auth-library": "^10.1.0",
34-
"npm-check-updates": "^18.0.1"
32+
"@google-github-actions/actions-utils": "^0.8.10",
33+
"google-auth-library": "^10.1.0"
3534
},
3635
"devDependencies": {
3736
"@eslint/eslintrc": "^3.3.1",

0 commit comments

Comments
 (0)