Skip to content

Commit c3da98d

Browse files
committed
chore: use commit sha for configure-aws-credentials
1 parent 86140e6 commit c3da98d

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/clean-up-deployments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
environment: development
2121
steps:
2222
- name: Assume AWS Role
23-
uses: aws-actions/configure-aws-credentials@v4
23+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a
2424
with:
2525
role-to-assume: ${{ vars.DEPLOYMENT_ROLE_ARN }}
2626
aws-region: eu-west-2

.github/workflows/post-merge-deploy-to-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Assume temporary AWS role
23-
uses: aws-actions/configure-aws-credentials@v4
23+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a
2424
with:
2525
role-to-assume: ${{ secrets.BUILD_GH_ACTIONS_ROLE_ARN }}
2626
aws-region: ${{ env.AWS_REGION }}

.github/workflows/post-merge-deploy-to-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Assume temporary AWS role
23-
uses: aws-actions/configure-aws-credentials@v4
23+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a
2424
with:
2525
role-to-assume: ${{ secrets.DEV_GH_ACTIONS_ROLE_ARN }}
2626
aws-region: ${{ env.AWS_REGION }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: npm ci --include-workspace-root # nosonar - esbuild postinstall is required to fetch its native binary
3434

3535
- name: Assume AWS Role
36-
uses: aws-actions/configure-aws-credentials@v4
36+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a
3737
with:
3838
role-to-assume: ${{ vars.DEPLOYMENT_ROLE_ARN }}
3939
aws-region: ${{ inputs.aws-region }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: npm ci --include-workspace-root # nosonar - esbuild and @pact-foundation/pact postinstall scripts are required to fetch their native binaries
4141

4242
- name: Assume AWS Role
43-
uses: aws-actions/configure-aws-credentials@v4
43+
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a
4444
with:
4545
role-to-assume: ${{ vars.DEPLOYMENT_ROLE_ARN }}
4646
aws-region: ${{ inputs.aws-region }}

0 commit comments

Comments
 (0)