Skip to content

Commit 7c8a8a5

Browse files
committed
migrate CI setup from API keys to auth tokens
1 parent 616870e commit 7c8a8a5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/aws-replicator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Install LocalStack and extension
3232
env:
33-
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
33+
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
3434
run: |
3535
set -e
3636
docker pull localstack/localstack-pro &
@@ -86,7 +86,7 @@ jobs:
8686
AWS_DEFAULT_REGION: us-east-1
8787
AWS_ACCESS_KEY_ID: ${{ secrets.TEST_AWS_ACCESS_KEY_ID }}
8888
AWS_SECRET_ACCESS_KEY: ${{ secrets.TEST_AWS_SECRET_ACCESS_KEY }}
89-
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
89+
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
9090
run: |
9191
cd aws-replicator/example
9292
make test

.github/workflows/miniflare.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
id: setup-python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.11'
2828

2929
- name: Install LocalStack and extension
3030
env:
31-
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
31+
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
3232
run: |
3333
docker pull localstack/localstack-pro &
3434
pip install localstack localstack-ext

0 commit comments

Comments
 (0)