From 7750ec18c39c818eaa0c989bfb640426c3b1b6b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 16:07:43 +0000 Subject: [PATCH] Bump aws-actions/configure-aws-credentials from 5 to 6 Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) from 5 to 6. - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v5...v6) --- updated-dependencies: - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dev-build.yml | 2 +- .github/workflows/prod-deploy.yml | 4 ++-- .github/workflows/stage-build.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml index 42145e6..72822b4 100644 --- a/.github/workflows/dev-build.yml +++ b/.github/workflows/dev-build.yml @@ -90,7 +90,7 @@ jobs: sudo rm -rf "$AGENT_TOOLSDIRECTORY" - name: Configure AWS Dev credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ env.AWS_REGION }} role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCT_DEV }}:role/${{ env.GHA_ROLE }} diff --git a/.github/workflows/prod-deploy.yml b/.github/workflows/prod-deploy.yml index abaa913..1879b4f 100644 --- a/.github/workflows/prod-deploy.yml +++ b/.github/workflows/prod-deploy.yml @@ -59,7 +59,7 @@ jobs: - name: Configure Stage AWS credentials id: login-aws-stage - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ env.AWS_REGION }} role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCT_STAGE }}:role/${{ env.GHA_ROLE_STAGE }} @@ -102,7 +102,7 @@ jobs: - name: Configure Prod AWS credentials if: ${{ steps.check_sha.outputs.sha_match == 'true' }} id: login-aws-prod - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ env.AWS_REGION }} role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCT_PROD }}:role/${{ env.GHA_ROLE_PROD }} diff --git a/.github/workflows/stage-build.yml b/.github/workflows/stage-build.yml index 643d1e8..a6beceb 100644 --- a/.github/workflows/stage-build.yml +++ b/.github/workflows/stage-build.yml @@ -78,7 +78,7 @@ jobs: sudo rm -rf "$AGENT_TOOLSDIRECTORY" - name: Configure AWS Stage credentials - uses: aws-actions/configure-aws-credentials@v5 + uses: aws-actions/configure-aws-credentials@v6 with: aws-region: ${{ env.AWS_REGION }} role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCT_STAGE }}:role/${{ env.GHA_ROLE }}