Skip to content

Commit 30ad945

Browse files
chore(deps): bump aws-actions/configure-aws-credentials from 5.0.0 to 5.1.0 (#4620)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Swopnil Dangol <[email protected]>
1 parent 39d4029 commit 30ad945

8 files changed

+11
-11
lines changed

.github/workflows/bootstrap_region.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: aws-powertools/actions/.github/actions/cached-node-modules@29979bc5339bf54f76a11ac36ff67701986bb0f0
5555
- id: credentials
5656
name: AWS Credentials
57-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838
57+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8
5858
with:
5959
aws-region: ${{ inputs.region }}
6060
role-to-assume: ${{ secrets.REGION_IAM_ROLE }}
@@ -84,7 +84,7 @@ jobs:
8484
steps:
8585
- id: credentials
8686
name: AWS Credentials
87-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838
87+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8
8888
with:
8989
aws-region: us-east-1
9090
role-to-assume: ${{ secrets.REGION_IAM_ROLE }}

.github/workflows/layer_balance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- id: credentials
4747
name: AWS Credentials
48-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838
48+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8
4949
with:
5050
aws-region: us-east-1
5151
role-to-assume: ${{ secrets.REGION_IAM_ROLE }}

.github/workflows/layers_partition_verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
environment: Prod (Readonly)
8585
steps:
8686
- name: Configure AWS Credentials
87-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
87+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
8888
with:
8989
role-to-assume: ${{ secrets.AWS_IAM_ROLE }}
9090
aws-region: us-east-1
@@ -127,7 +127,7 @@ jobs:
127127
run: |
128128
echo 'CONVERTED_REGION=${{ matrix.region }}' | tr 'a-z\-' 'A-Z_' >> "$GITHUB_OUTPUT"
129129
- name: Configure AWS Credentials
130-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
130+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
131131
with:
132132
# Dynamic secret access is safe here - secrets are scoped per environment
133133
role-to-assume: ${{ secrets[format('IAM_ROLE_{0}', steps.transform.outputs.CONVERTED_REGION)] }}

.github/workflows/layers_partitions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
environment: Prod (Readonly)
9494
steps:
9595
- name: Configure AWS Credentials
96-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
96+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
9797
with:
9898
role-to-assume: ${{ secrets.AWS_IAM_ROLE }}
9999
aws-region: us-east-1
@@ -151,7 +151,7 @@ jobs:
151151
run: |
152152
echo 'CONVERTED_REGION=${{ matrix.region }}' | tr 'a-z\-' 'A-Z_' >> "$GITHUB_OUTPUT"
153153
- name: Configure AWS Credentials
154-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
154+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
155155
with:
156156
# Dynamic secret access is safe here - secrets are scoped per environment
157157
role-to-assume: ${{ secrets[format('IAM_ROLE_{0}', steps.transform.outputs.CONVERTED_REGION)] }}

.github/workflows/reusable_deploy_layer_stack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: checkout
7676
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7777
- name: aws credentials
78-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
78+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
7979
with:
8080
aws-region: ${{ matrix.region }}
8181
role-to-assume: ${{ secrets.target-account-role }}

.github/workflows/reusable_publish_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
rm -rf site
9191
mkdocs build
9292
- name: Configure AWS credentials
93-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
93+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
9494
with:
9595
aws-region: us-east-1
9696
role-to-assume: ${{ secrets.AWS_DOCS_ROLE_ARN }}

.github/workflows/run-e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
node-version: '22'
6060
- name: Setup AWS credentials
61-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
61+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8 # v5.1.0
6262
with:
6363
role-to-assume: ${{ secrets.E2E_IAM_ROLE_ARN }}
6464
aws-region: eu-west-1

.github/workflows/update_ssm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
run: |
122122
echo 'CONVERTED_REGION=${{ matrix.region }}' | tr 'a-z\-' 'A-Z_' >> "$GITHUB_OUTPUT"
123123
- id: creds
124-
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838
124+
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8
125125
with:
126126
aws-region: ${{ matrix.region }}
127127
# Dynamic secret access is safe here - secrets are scoped per environment

0 commit comments

Comments
 (0)