Skip to content

Commit e498aeb

Browse files
Update aws cdk modules
1 parent 723a783 commit e498aeb

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/actions/cdk-deploy/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
- name: Install node and related deps
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 14
27+
node-version: 20
2828

2929
- uses: actions/cache@v3
3030
with:

infrastructure/aws/cdk/app.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
import os
44
from typing import Any, Dict, List, Optional
55

6-
from aws_cdk import App, CfnOutput, Duration, Stack, Tags
7-
from aws_cdk import aws_apigatewayv2_alpha as apigw
6+
from aws_cdk import App, CfnOutput, Duration, Stack, Tags, aws_lambda
7+
from aws_cdk import aws_apigatewayv2 as apigw
88
from aws_cdk import aws_cloudwatch as cloudwatch
99
from aws_cdk import aws_cloudwatch_actions as cloudwatch_actions
1010
from aws_cdk import aws_iam as iam
11-
from aws_cdk import aws_lambda
1211
from aws_cdk import aws_logs as logs
1312
from aws_cdk import aws_sns as sns
1413
from aws_cdk import aws_sns_subscriptions as subscriptions
15-
from aws_cdk.aws_apigatewayv2_integrations_alpha import HttpLambdaIntegration
14+
from aws_cdk.aws_apigatewayv2_integrations import HttpLambdaIntegration
1615
from config import StackSettings
1716
from constructs import Construct
1817

0 commit comments

Comments
 (0)