Skip to content

Commit e0f5010

Browse files
authored
Update deps (#404)
Fixes #392 Fixes #379
1 parent 2ec984a commit e0f5010

9 files changed

+664
-1750
lines changed

.eslintrc.js

+4
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@ module.exports = {
2424
'plugin:@typescript-eslint/recommended',
2525
'plugin:prettier/recommended',
2626
],
27+
28+
rules: {
29+
'@typescript-eslint/no-explicit-any': 'off',
30+
},
2731
};

dist/index.js

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

package-lock.json

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

package.json

+15-23
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
"main": "dist/index.js",
66
"scripts": {
77
"build": "ncc build -m src/main.ts",
8-
"e2e-tests": "mocha -r ts-node/register -t 120s 'tests/e2e/*.test.ts'",
9-
"fixlint": "eslint . --ext .ts,.tsx --fix",
10-
"format": "prettier --write **/*.ts",
118
"lint": "eslint . --ext .ts,.tsx",
12-
"test": "mocha -r ts-node/register -t 600s 'tests/*.test.ts'"
9+
"format": "prettier --write **/*.ts",
10+
"test": "node --require ts-node/register --test-reporter spec --test tests/client.test.ts tests/secret.test.ts tests/util.test.ts"
1311
},
1412
"husky": {
1513
"hooks": {
@@ -32,29 +30,23 @@
3230
"dependencies": {
3331
"@actions/core": "^1.10.1",
3432
"@actions/http-client": "^2.2.0",
35-
"@google-github-actions/actions-utils": "^0.4.9",
33+
"@google-github-actions/actions-utils": "^0.7.0",
3634
"archiver": "^6.0.1",
37-
"google-auth-library": "^9.2.0",
38-
"ignore": "^5.2.4"
35+
"google-auth-library": "^9.4.2",
36+
"ignore": "^5.3.0"
3937
},
4038
"devDependencies": {
41-
"@types/archiver": "^6.0.1",
42-
"@types/chai": "^4.3.10",
43-
"@types/mocha": "^10.0.4",
44-
"@types/node": "^20.9.0",
45-
"@types/sinon": "^17.0.1",
46-
"@typescript-eslint/eslint-plugin": "^6.10.0",
47-
"@typescript-eslint/parser": "^6.10.0",
39+
"@types/archiver": "^6.0.2",
40+
"@types/node": "^20.11.5",
41+
"@typescript-eslint/eslint-plugin": "^6.19.1",
42+
"@typescript-eslint/parser": "^6.19.1",
4843
"@vercel/ncc": "^0.38.1",
49-
"chai": "^4.3.10",
50-
"eslint-config-prettier": "^9.0.0",
51-
"eslint-plugin-prettier": "^5.0.1",
52-
"eslint": "^8.53.0",
53-
"mocha": "^10.2.0",
44+
"eslint-config-prettier": "^9.1.0",
45+
"eslint-plugin-prettier": "^5.1.3",
46+
"eslint": "^8.56.0",
5447
"node-stream-zip": "^1.15.0",
55-
"prettier": "^3.0.3",
56-
"sinon": "^17.0.1",
57-
"ts-node": "^10.9.1",
58-
"typescript": "^5.2.2"
48+
"prettier": "^3.2.4",
49+
"ts-node": "^10.9.2",
50+
"typescript": "^5.3.3"
5951
}
6052
}

0 commit comments

Comments
 (0)