From d12e4593679ebe56c1367c0d9fb57ec42dc2190d Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Fri, 30 Jul 2021 17:51:43 -0700 Subject: [PATCH] added the configure-aws-credentials action so that we can use boto3 --- .github/workflows/actions-migration.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions-migration.yml b/.github/workflows/actions-migration.yml index 995a605ad7..44fdf737c4 100644 --- a/.github/workflows/actions-migration.yml +++ b/.github/workflows/actions-migration.yml @@ -517,7 +517,12 @@ jobs: run: | echo ::set-output name=branch::${GITHUB_REF#refs/heads/} - + #Set up credentials in the environment so that boto3 will succeed + - uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + - name: Run Detection testing timeout-minutes: 120 run: |