Skip to content

Commit 9ba27da

Browse files
authored
functions/ package upgrades
1 parent 917c553 commit 9ba27da

File tree

14 files changed

+959
-760
lines changed

14 files changed

+959
-760
lines changed

.devcontainer/ncu.sh

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/usr/bin/env bash
2+
3+
function setup {
4+
for d in */ ; do
5+
[ -L "${d%/}" ] && continue
6+
echo "Upgrading Dependencies in: $d"
7+
cd "$d"
8+
ncu -u
9+
yarn install
10+
cd ..
11+
done
12+
}
13+
14+
cd /workspaces/GSSAR/functions/helpers
15+
16+
setup
17+
18+
cd /workspaces/GSSAR/functions/authorizers
19+
20+
setup
21+
22+
cd /workspaces/GSSAR/functions/remediators
23+
24+
setup

functions/authorizers/githubWebhookIPValidator/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
"license": "ISC",
1111
"devDependencies": {
1212
"@tsconfig/node14": "^1.0.1",
13-
"@types/aws-lambda": "^8.10.85",
13+
"@types/aws-lambda": "^8.10.89",
1414
"@types/ip": "^1.1.0",
1515
"@types/json-schema": "^7.0.9",
16-
"@types/node": "^16.11.7",
17-
"@typescript-eslint/eslint-plugin": "^5.4.0",
18-
"@typescript-eslint/parser": "^5.4.0",
19-
"eslint": "^8.2.0",
16+
"@types/node": "^17.0.7",
17+
"@typescript-eslint/eslint-plugin": "^5.9.0",
18+
"@typescript-eslint/parser": "^5.9.0",
19+
"eslint": "^8.6.0",
2020
"eslint-config-prettier": "^8.3.0",
2121
"eslint-plugin-prettier": "^4.0.0",
22-
"prettier": "^2.4.1",
22+
"prettier": "^2.5.1",
2323
"ts-node": "^10.4.0",
2424
"tslib": "^2.3.1",
25-
"typescript": "^4.4.4"
25+
"typescript": "^4.5.4"
2626
},
2727
"engines": {
2828
"node": "16"
@@ -32,7 +32,7 @@
3232
"url": "https://github.com/NickLiffen/GSSAR"
3333
},
3434
"dependencies": {
35-
"@aws-sdk/client-ssm": "^3.41.0",
35+
"@aws-sdk/client-ssm": "^3.45.0",
3636
"@octokit/auth-app": "^3.6.1",
3737
"@octokit/graphql": "^4.8.0",
3838
"ip": "^1.1.5"

functions/authorizers/githubWebhookIPValidator/yarn.lock

Lines changed: 142 additions & 113 deletions
Large diffs are not rendered by default.

functions/authorizers/githubWebhookSecretValidator/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
"license": "ISC",
1111
"devDependencies": {
1212
"@tsconfig/node14": "^1.0.1",
13-
"@types/aws-lambda": "^8.10.85",
13+
"@types/aws-lambda": "^8.10.89",
1414
"@types/ip": "^1.1.0",
1515
"@types/json-schema": "^7.0.9",
16-
"@types/node": "^16.11.7",
17-
"@typescript-eslint/eslint-plugin": "^5.4.0",
18-
"@typescript-eslint/parser": "^5.4.0",
19-
"eslint": "^8.2.0",
16+
"@types/node": "^17.0.7",
17+
"@typescript-eslint/eslint-plugin": "^5.9.0",
18+
"@typescript-eslint/parser": "^5.9.0",
19+
"eslint": "^8.6.0",
2020
"eslint-config-prettier": "^8.3.0",
2121
"eslint-plugin-prettier": "^4.0.0",
22-
"prettier": "^2.4.1",
22+
"prettier": "^2.5.1",
2323
"ts-node": "^10.4.0",
2424
"tslib": "^2.3.1",
25-
"typescript": "^4.4.4"
25+
"typescript": "^4.5.4"
2626
},
2727
"engines": {
2828
"node": "16"
@@ -32,8 +32,8 @@
3232
"url": "https://github.com/NickLiffen/GSSAR"
3333
},
3434
"dependencies": {
35-
"@aws-sdk/client-eventbridge": "^3.41.0",
36-
"@aws-sdk/client-ssm": "^3.41.0",
35+
"@aws-sdk/client-eventbridge": "^3.45.0",
36+
"@aws-sdk/client-ssm": "^3.45.0",
3737
"@octokit/auth-app": "^3.6.1",
3838
"@octokit/graphql": "^4.8.0",
3939
"@octokit/webhooks-methods": "^2.0.0",

0 commit comments

Comments
 (0)