We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 870373d + ad1b412 commit 0cd2446Copy full SHA for 0cd2446
1 file changed
.github/workflows/deploy.yml
@@ -21,6 +21,12 @@ jobs:
21
with:
22
python-version: "3.11"
23
24
+ - name: Set up Node
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: "20"
28
+ registry-url: "https://registry.npmjs.org"
29
+
30
- name: Install CDK dependencies
31
working-directory: infra/cdk
32
run: |
@@ -29,7 +35,7 @@ jobs:
35
pip install -r requirements.txt
36
37
- name: Install AWS CDK CLI
- run: npm install -g aws-cdk
38
+ run: npm install -g aws-cdk@2.130.0 --registry=https://registry.npmjs.org
33
39
34
40
- name: Configure AWS credentials
41
uses: aws-actions/configure-aws-credentials@v4
0 commit comments