Skip to content

Commit

Permalink
Remove invalid test again
Browse files Browse the repository at this point in the history
  • Loading branch information
reakaleek committed Nov 29, 2024
1 parent fb0c926 commit b533417
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/test-aws-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,10 @@ permissions:
id-token: write

jobs:
create-credentials:
outputs:
aws-access-key-id: ${{ steps.auth.outputs.aws-access-key-id }}
aws-secret-access-key: ${{ steps.auth.outputs.aws-secret-access-key }}
aws-session-token: ${{ steps.auth.outputs.aws-session-token }}
role-arn: ${{ steps.auth.outputs.role-arn }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./aws/auth
id: auth
- run: aws sts get-caller-identity

test:
needs: create-credentials
runs-on: ubuntu-latest
steps:
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-east-1
role-to-assume: ${{ needs.create-credentials.outputs.role-arn }}
aws-access-key-id: ${{ needs.create-credentials.outputs.aws-access-key-id }}
aws-secret-access-key: ${{ needs.create-credentials.outputs.aws-secret-access-key }}
- run: aws sts get-caller-identity

0 comments on commit b533417

Please sign in to comment.