Skip to content

Commit 37fcde8

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1eddba2 commit 37fcde8

11 files changed

+24
-24
lines changed

.github/workflows/_ascend_npu_benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ jobs:
5959
git config --global --add safe.directory "$GITHUB_WORKSPACE"
6060
6161
- name: Checkout
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363

6464
- name: Checkout benchmark
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666
with:
6767
repository: pytorch/benchmark
6868
path: benchmark
@@ -186,7 +186,7 @@ jobs:
186186
- benchmark
187187
steps:
188188
- name: Checkout
189-
uses: actions/checkout@v4
189+
uses: actions/checkout@v5
190190

191191
- name: Download README.md
192192
uses: actions/download-artifact@v4

.github/workflows/_ascend_npu_build_torch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
git config --global --add safe.directory "$GITHUB_WORKSPACE"
5353
5454
- name: Checkout PyTorch
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
repository: pytorch/pytorch
5858
ref: ${{ inputs.ref }}

.github/workflows/_ascend_npu_build_torch_npu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
git config --global --add safe.directory "$GITHUB_WORKSPACE"
4747
4848
- name: Checkout
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050

5151
- name: Checkout torch_npu
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353
with:
5454
repository: Ascend/pytorch
5555
submodules: recursive

.github/workflows/_ascend_npu_torchtune.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
git config --global url."https://gh-proxy.test.osinfra.cn/https://github.com/".insteadOf https://github.com/
5959
6060
- name: Checkout
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262

6363
- name: Checkout torchtune
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
repository: pytorch/torchtune
6767
path: torchtune

.github/workflows/_ascend_npu_ut.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ jobs:
4848
git config --global --add safe.directory "$GITHUB_WORKSPACE"
4949
5050
- name: Checkout
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252

5353
- name: Checkout torch_npu
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
repository: Ascend/pytorch
5757
path: torch_npu

.github/workflows/_build_torch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
dist-name: ${{ steps.list-dist.outputs.dist-name }}
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252

5353
- name: Setup Python environment
5454
uses: actions/setup-python@v5
@@ -69,7 +69,7 @@ jobs:
6969
git config --global --add safe.directory "$GITHUB_WORKSPACE"
7070
7171
- name: Checkout PyTorch
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v5
7373
with:
7474
repository: pytorch/pytorch
7575
ref: ${{ inputs.ref }}

.github/workflows/_gaudi_hpu_benchmark.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,18 +90,18 @@ jobs:
9090
git config --global --add safe.directory "$GITHUB_WORKSPACE"
9191
9292
- name: Checkout
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v5
9494

9595
- name: Checkout PyTorch
96-
uses: actions/checkout@v4
96+
uses: actions/checkout@v5
9797
with:
9898
repository: pytorch/pytorch
9999
ref: ${{ inputs.ref }}
100100
submodules: recursive
101101
path: pytorch
102102

103103
- name: Checkout torch_hpu
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v5
105105
with:
106106
repository: HabanaAI/gaudi-pytorch-bridge
107107
ref: v${{ inputs.rel_ver }}
@@ -165,21 +165,21 @@ jobs:
165165
pip list | grep -E 'torch|numpy'
166166
167167
- name: Checkout benchmark
168-
uses: actions/checkout@v4
168+
uses: actions/checkout@v5
169169
with:
170170
repository: pytorch/benchmark
171171
ref: ${{ steps.list-torch-version.outputs.torchbench-version }}
172172
path: benchmark
173173

174174
- name: Checkout vision
175-
uses: actions/checkout@v4
175+
uses: actions/checkout@v5
176176
with:
177177
repository: pytorch/vision
178178
ref: ${{ steps.list-torch-version.outputs.torchvision-version }}
179179
path: vision
180180

181181
- name: Checkout audio
182-
uses: actions/checkout@v4
182+
uses: actions/checkout@v5
183183
with:
184184
repository: pytorch/audio
185185
ref: ${{ steps.list-torch-version.outputs.torchaudio-version }}

.github/workflows/_gaudi_hpu_build_torch_hpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
dl-dist-name: ${{ steps.list-dist.outputs.dl-dist-name }}
6464
steps:
6565
- name: Checkout
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767

6868
- name: Setup Python environment
6969
uses: actions/setup-python@v5

.github/workflows/_gaudi_hpu_ut.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,18 +90,18 @@ jobs:
9090
git config --global --add safe.directory "$GITHUB_WORKSPACE"
9191
9292
- name: Checkout
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v5
9494

9595
- name: Checkout PyTorch
96-
uses: actions/checkout@v4
96+
uses: actions/checkout@v5
9797
with:
9898
repository: pytorch/pytorch
9999
ref: ${{ inputs.ref }}
100100
submodules: recursive
101101
path: pytorch
102102

103103
- name: Checkout torch_hpu
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v5
105105
with:
106106
repository: HabanaAI/gaudi-pytorch-bridge
107107
ref: v${{ inputs.rel_ver }}

.github/workflows/dispatch-event.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
prs: ${{ steps.list-pr.outputs.prs }}
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747

4848
# List PRs created in the past 24 hours
4949
- name: List PyTorch PRs

0 commit comments

Comments
 (0)