Skip to content

Commit bc71711

Browse files
Bump actions/checkout from 5.0.0 to 5.0.1 in the github-actions group (#2175)
1 parent efed3c3 commit bc71711

21 files changed

+33
-33
lines changed

.github/workflows/build_jax_dockerfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ jobs:
6363
S3_BUCKET_PY: "therock-${{ inputs.release_type }}-python"
6464
steps:
6565
- name: Checkout TheRock
66-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
66+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6767

6868
- name: Checkout JAX
69-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
69+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
7070
with:
7171
path: jax
7272
repository: rocm/rocm-jax

.github/workflows/build_linux_jax_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ jobs:
7474
S3_BUCKET_PY: "therock-${{ inputs.release_type }}-python"
7575
steps:
7676
- name: Checkout TheRock
77-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
77+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
7878

7979
- name: Checkout JAX
80-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
80+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
8181
with:
8282
path: jax
8383
repository: rocm/rocm-jax

.github/workflows/build_native_linux_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
ARTIFACTS_DIR: ${{ github.workspace }}/output/artifacts
6666
PACKAGE_DIST_DIR: ${{ github.workspace }}/output/packages
6767
steps:
68-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
68+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6969
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
7070
with:
7171
python-version: '3.12'

.github/workflows/build_portable_linux_artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
IS_PR_FROM_FORK: ${{ github.event.pull_request.head.repo.fork }}
7979
steps:
8080
- name: Checkout Repository
81-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
81+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
8282

8383
- name: Install python deps
8484
run: |

.github/workflows/build_portable_linux_python_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
MANYLINUX: 1
4545

4646
steps:
47-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
47+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
4848
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
4949
with:
5050
python-version: '3.12'

.github/workflows/build_portable_linux_pytorch_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
triton_version: ${{ steps.build-pytorch-wheels.outputs.triton_version }}
123123
steps:
124124
- name: Checkout
125-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
125+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
126126
with:
127127
repository: ${{ inputs.repository || github.repository }}
128128
ref: ${{ inputs.ref || '' }}
@@ -221,7 +221,7 @@ jobs:
221221
bypass_tests_for_releases: ${{ steps.configure.outputs.bypass_tests_for_releases }}
222222
steps:
223223
- name: Checking out repository
224-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
224+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
225225
with:
226226
repository: ${{ inputs.repository || github.repository }}
227227
ref: ${{ inputs.ref || '' }}
@@ -263,7 +263,7 @@ jobs:
263263

264264
steps:
265265
- name: Checkout
266-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
266+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
267267
with:
268268
repository: ${{ inputs.repository || github.repository }}
269269
ref: ${{ inputs.ref || '' }}

.github/workflows/build_windows_artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
IS_PR_FROM_FORK: ${{ github.event.pull_request.head.repo.fork }}
7676
steps:
7777
- name: "Checking out repository"
78-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
78+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
7979

8080
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
8181
with:

.github/workflows/build_windows_python_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run:
4444
shell: bash
4545
steps:
46-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
4747
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
4848
with:
4949
python-version: '3.12'

.github/workflows/build_windows_pytorch_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
shell: bash
127127
steps:
128128
- name: Checkout
129-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
129+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
130130
with:
131131
repository: ${{ inputs.repository || github.repository }}
132132
ref: ${{ inputs.ref || '' }}
@@ -258,7 +258,7 @@ jobs:
258258
bypass_tests_for_releases: ${{ steps.configure.outputs.bypass_tests_for_releases }}
259259
steps:
260260
- name: Checking out repository
261-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
261+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
262262
with:
263263
repository: ${{ inputs.repository || github.repository }}
264264
ref: ${{ inputs.ref || '' }}
@@ -298,7 +298,7 @@ jobs:
298298
TORCHVISION_VERSION: "${{ needs.build_pytorch_wheels.outputs.torchvision_version }}"
299299
steps:
300300
- name: Checkout
301-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
301+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
302302
with:
303303
repository: ${{ inputs.repository || github.repository }}
304304
ref: ${{ inputs.ref || '' }}

.github/workflows/copy_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
steps:
6262
- name: Checkout Repository
63-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
63+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
6464

6565
- name: Install the AWS tool
6666
run: ./dockerfiles/install_awscli.sh

0 commit comments

Comments
 (0)