Skip to content

Commit 8c1ddfc

Browse files
authored
Use oidc for wheel workflows, remove aws credentials (#3727)
1 parent ff9b404 commit 8c1ddfc

4 files changed

+16
-12
lines changed

.github/workflows/build_wheels_aarch64_linux.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
1414
workflow_dispatch:
1515

16+
permissions:
17+
id-token: write
18+
contents: read
19+
1620
concurrency:
1721
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
1822
cancel-in-progress: true
@@ -50,6 +54,3 @@ jobs:
5054
trigger-event: ${{ github.event_name }}
5155
architecture: aarch64
5256
setup-miniconda: false
53-
secrets:
54-
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
55-
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}

.github/workflows/build_wheels_linux.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
1414
workflow_dispatch:
1515

16+
permissions:
17+
id-token: write
18+
contents: read
19+
1620
concurrency:
1721
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
1822
cancel-in-progress: true
@@ -45,6 +49,3 @@ jobs:
4549
smoke-test-script: ${{ matrix.smoke-test-script }}
4650
package-name: ${{ matrix.package-name }}
4751
trigger-event: ${{ github.event_name }}
48-
secrets:
49-
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
50-
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}

.github/workflows/build_wheels_macos.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
1414
workflow_dispatch:
1515

16+
permissions:
17+
id-token: write
18+
contents: read
19+
1620
concurrency:
1721
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
1822
cancel-in-progress: true
@@ -46,6 +50,3 @@ jobs:
4650
runner-type: macos-12
4751
package-name: ${{ matrix.package-name }}
4852
trigger-event: ${{ github.event_name }}
49-
secrets:
50-
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
51-
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}

.github/workflows/build_wheels_windows.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
- v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
1414
workflow_dispatch:
1515

16+
permissions:
17+
id-token: write
18+
contents: read
19+
1620
jobs:
1721
generate-matrix:
1822
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@release/2.2
@@ -44,6 +48,3 @@ jobs:
4448
package-name: ${{ matrix.package-name }}
4549
smoke-test-script: ${{ matrix.smoke-test-script }}
4650
trigger-event: ${{ github.event_name }}
47-
secrets:
48-
AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID: ${{ secrets.AWS_PYTORCH_UPLOADER_ACCESS_KEY_ID }}
49-
AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY: ${{ secrets.AWS_PYTORCH_UPLOADER_SECRET_ACCESS_KEY }}

0 commit comments

Comments
 (0)