Skip to content

Commit 42a5304

Browse files
committed
fix: 🐛 Update to NodeJS 20.x
1 parent bc08553 commit 42a5304

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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: 18
17+
node-version: 20
1818

1919
- name: NPM Install
2020
run: |

.github/workflows/masterandtag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: 18
21+
node-version: 20
2222

2323
- name: NPM Install
2424
run: |

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 = "nodejs18.x"
22+
runtime = "nodejs20.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)