Skip to content

Commit a69bb50

Browse files
committed
feat: 🎸 Update for Node18.X
1 parent c7d44d5 commit a69bb50

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/git-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 14
17+
node-version: 18
1818

1919
- name: NPM Install
2020
run: |

.github/workflows/masterandtag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 14
17+
node-version: 18
1818

1919
- name: NPM Install
2020
run: |

z-main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
archive = {
55
source = "hashicorp/archive"
6-
version = ">= 4.15.0" # 4.15.0 introduced NodeJS 16.x
6+
version = ">= 4.41.0" # 4.41.0 introduced NodeJS 18.x
77
}
88

99
aws = {

z-prune-quicksight-users.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resource "aws_lambda_function" "quicksight_cleanup" {
1919
description = "Runs daily (by default) to prune inactive users from QuickSight, saving you money."
2020
filename = data.archive_file.quicksight_cleanup.output_path
2121
source_code_hash = data.archive_file.quicksight_cleanup.output_base64sha256
22-
runtime = "nodejs16.x"
22+
runtime = "nodejs18.x"
2323
handler = "${local.prune_quicksight_users_file_name}.default"
2424
role = aws_iam_role.quicksight_cleanup.arn
2525
timeout = 900

0 commit comments

Comments
 (0)