Skip to content

Commit 28fcaf3

Browse files
author
Dave Grantham
committed
downgrade aws credentials to v1
Signed-off-by: Dave Grantham <dwg@linuxprogrammer.org>
1 parent 04436ee commit 28fcaf3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,11 @@ jobs:
5252
run: ipfs-car pack ./public --output prod.car
5353

5454
- name: Configure AWS credentials for Filebase
55-
uses: aws-actions/configure-aws-credentials@v4
55+
uses: aws-actions/configure-aws-credentials@v1
5656
with:
5757
aws-access-key-id: ${{ secrets.FILEBASE_ACCESS_KEY }}
5858
aws-secret-access-key: ${{ secrets.FILEBASE_SECRET_KEY }}
5959
aws-region: us-east-1
60-
role-to-assume: "" # No role to assume, prevents OIDC mode
6160

6261
- name: Upload CAR to production bucket (with import=car)
6362
id: upload

.github/workflows/preview.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,11 @@ jobs:
5757
run: ipfs-car pack ./public --output preview.car
5858

5959
- name: Configure AWS credentials for Filebase
60-
uses: aws-actions/configure-aws-credentials@v4
60+
uses: aws-actions/configure-aws-credentials@v1
6161
with:
6262
aws-access-key-id: ${{ secrets.FILEBASE_ACCESS_KEY }}
6363
aws-secret-access-key: ${{ secrets.FILEBASE_SECRET_KEY }}
6464
aws-region: us-east-1 # Filebase ignores region, but required
65-
role-to-assume: "" # No role to assume, prevents OIDC mode
6665

6766
- name: Determine preview path prefix
6867
id: vars

0 commit comments

Comments
 (0)