From 76c590db2e4ab758665400e736772e70f36707eb Mon Sep 17 00:00:00 2001 From: Jan Calanog Date: Thu, 28 Nov 2024 16:19:54 +0100 Subject: [PATCH] ok --- .github/workflows/test-aws-auth.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-aws-auth.yml b/.github/workflows/test-aws-auth.yml index 85e4f99..23900bc 100644 --- a/.github/workflows/test-aws-auth.yml +++ b/.github/workflows/test-aws-auth.yml @@ -24,6 +24,7 @@ jobs: 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 @@ -40,6 +41,7 @@ jobs: - 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 }} aws-session-token: ${{ needs.create-credentials.outputs.aws-session-token }}