Skip to content

Commit 0cd2446

Browse files
authored
Merge pull request #44 from neurostuff/fix/aws-deploy
[FIX] use specific version of cdk
2 parents 870373d + ad1b412 commit 0cd2446

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
with:
2222
python-version: "3.11"
2323

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+
2430
- name: Install CDK dependencies
2531
working-directory: infra/cdk
2632
run: |
@@ -29,7 +35,7 @@ jobs:
2935
pip install -r requirements.txt
3036
3137
- name: Install AWS CDK CLI
32-
run: npm install -g aws-cdk
38+
run: npm install -g aws-cdk@2.130.0 --registry=https://registry.npmjs.org
3339

3440
- name: Configure AWS credentials
3541
uses: aws-actions/configure-aws-credentials@v4

0 commit comments

Comments
 (0)