Skip to content

Commit 2b2e9b8

Browse files
committed
fix the github actions workflow
1 parent 89b4af8 commit 2b2e9b8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/cdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Node.js
2626
uses: actions/setup-node@v3
2727
with:
28-
node-version: 20
28+
node-version: 22
2929

3030
- name: Install CDK
3131
run: |
@@ -40,7 +40,7 @@ jobs:
4040
configuration: DEBUG=1
4141
install-awslocal: 'true'
4242
env:
43-
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
43+
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
4444

4545
- name: Install dependencies
4646
run: |

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ jobs:
4343
pip install requests boto3 pytest localstack-sdk-python
4444
4545
- name: Start LocalStack
46-
uses: LocalStack/setup-localstack@v0.2.3
46+
uses: LocalStack/setup-localstack@main
4747
with:
4848
image-tag: 'latest'
4949
use-pro: 'true'
5050
configuration: LS_LOG=trace
5151
install-awslocal: 'true'
5252
env:
53-
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
53+
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
5454

5555
- name: Deploy infrastructure
5656
run: |

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: 20
18+
node-version: 22
1919
- name: LocalStack Preview
2020
uses: LocalStack/setup-localstack@main
2121
with:

0 commit comments

Comments
 (0)