Skip to content

Commit d33bac6

Browse files
authored
Downgrade aws-actions/configure-aws-credentials to v3 (#4869)
1 parent 06ba79a commit d33bac6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build_wheels_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,13 +238,13 @@ jobs:
238238
# TODO (huydhn): Move the following step to a separate build job
239239
- name: Configure aws credentials (pytorch account)
240240
if: ${{ inputs.trigger-event == 'push' && startsWith(github.event.ref, 'refs/heads/nightly') }}
241-
uses: aws-actions/configure-aws-credentials@v4
241+
uses: aws-actions/configure-aws-credentials@v3
242242
with:
243243
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_nightly_build_wheels
244244
aws-region: us-east-1
245245
- name: Configure aws credentials (pytorch account)
246246
if: ${{ env.CHANNEL == 'test' && startsWith(github.event.ref, 'refs/tags/') }}
247-
uses: aws-actions/configure-aws-credentials@v4
247+
uses: aws-actions/configure-aws-credentials@v3
248248
with:
249249
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_test_build_wheels
250250
aws-region: us-east-1

.github/workflows/build_wheels_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,13 @@ jobs:
212212
# TODO (huydhn): Move the following step to a separate build job
213213
- name: Configure aws credentials (pytorch account)
214214
if: ${{ inputs.trigger-event == 'push' && startsWith(github.event.ref, 'refs/heads/nightly') }}
215-
uses: aws-actions/configure-aws-credentials@v4
215+
uses: aws-actions/configure-aws-credentials@v3
216216
with:
217217
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_nightly_build_wheels
218218
aws-region: us-east-1
219219
- name: Configure aws credentials (pytorch account)
220220
if: ${{ env.CHANNEL == 'test' && startsWith(github.event.ref, 'refs/tags/') }}
221-
uses: aws-actions/configure-aws-credentials@v4
221+
uses: aws-actions/configure-aws-credentials@v3
222222
with:
223223
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_test_build_wheels
224224
aws-region: us-east-1

.github/workflows/build_wheels_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,13 +202,13 @@ jobs:
202202
# TODO (huydhn): Move the following step to a separate build job
203203
- name: Configure aws credentials (pytorch account)
204204
if: ${{ inputs.trigger-event == 'push' && startsWith(github.event.ref, 'refs/heads/nightly') }}
205-
uses: aws-actions/configure-aws-credentials@v4
205+
uses: aws-actions/configure-aws-credentials@v3
206206
with:
207207
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_nightly_build_wheels
208208
aws-region: us-east-1
209209
- name: Configure aws credentials (pytorch account)
210210
if: ${{ env.CHANNEL == 'test' && startsWith(github.event.ref, 'refs/tags/') }}
211-
uses: aws-actions/configure-aws-credentials@v4
211+
uses: aws-actions/configure-aws-credentials@v3
212212
with:
213213
role-to-assume: arn:aws:iam::749337293305:role/gha_workflow_test_build_wheels
214214
aws-region: us-east-1

0 commit comments

Comments
 (0)