Skip to content

Commit

Permalink
Revert "revert to node 14"
Browse files Browse the repository at this point in the history
This reverts commit 6506f5e.
  • Loading branch information
thisismana committed Jul 31, 2023
1 parent 6506f5e commit 365f19f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- uses: actions/cache@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions source/image-handler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"dependencies": {
"color": "3.1.3",
"color-name": "1.1.4",
"sharp": "0.31.1"
"sharp": "0.31.1",
"aws-sdk": "2.887.0"
},
"devDependencies": {
"jest": "^26.4.2",
"aws-sdk": "2.887.0",
"sinon": "^10.0.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion source/image-handler/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module "lambda" {
ignore_external_function_updates = true
memory_size = 1024
publish = true
runtime = "nodejs14.x"
runtime = "nodejs18.x"
handler = "index.handler"
s3_bucket = data.aws_s3_bucket.ci.bucket
s3_key = local.s3_key
Expand Down

0 comments on commit 365f19f

Please sign in to comment.