Skip to content

Commit 910493b

Browse files
MINOR: [CI] Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 266dfc1 commit 910493b

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
name: "pre-commit"
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v5
36+
- uses: actions/checkout@v6
3737
with:
3838
fetch-depth: 0
3939
persist-credentials: false

.github/workflows/dev_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
name: "Ensure PR format"
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v5
46+
- uses: actions/checkout@v6
4747
with:
4848
fetch-depth: 0
4949
persist-credentials: false

.github/workflows/rc.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 5
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
submodules: recursive
4444
- name: Prepare for tag
@@ -119,17 +119,17 @@ jobs:
119119
# ci/scripts/download_cpp.sh
120120
- name: Checkout Apache Arrow C++
121121
# if: github.event_name == 'schedule'
122-
uses: actions/checkout@v5
122+
uses: actions/checkout@v6
123123
with:
124124
repository: apache/arrow
125125
path: arrow
126126
- name: Checkout apache/arrow-testing
127-
uses: actions/checkout@v5
127+
uses: actions/checkout@v6
128128
with:
129129
repository: apache/arrow-testing
130130
path: arrow/testing
131131
- name: Checkout apache/parquet-testing
132-
uses: actions/checkout@v5
132+
uses: actions/checkout@v6
133133
with:
134134
repository: apache/parquet-testing
135135
path: arrow/cpp/submodules/parquet-testing
@@ -186,17 +186,17 @@ jobs:
186186
# ci/scripts/download_cpp.sh
187187
- name: Checkout Apache Arrow C++
188188
# if: github.event_name == 'schedule'
189-
uses: actions/checkout@v5
189+
uses: actions/checkout@v6
190190
with:
191191
repository: apache/arrow
192192
path: arrow
193193
- name: Checkout apache/arrow-testing
194-
uses: actions/checkout@v5
194+
uses: actions/checkout@v6
195195
with:
196196
repository: apache/arrow-testing
197197
path: arrow/testing
198198
- name: Checkout apache/parquet-testing
199-
uses: actions/checkout@v5
199+
uses: actions/checkout@v6
200200
with:
201201
repository: apache/parquet-testing
202202
path: arrow/cpp/submodules/parquet-testing
@@ -322,7 +322,7 @@ jobs:
322322
# ci/scripts/download_cpp.sh
323323
- name: Checkout Apache Arrow C++
324324
# if: github.event_name == 'schedule'
325-
uses: actions/checkout@v5
325+
uses: actions/checkout@v6
326326
with:
327327
repository: apache/arrow
328328
path: arrow
@@ -421,7 +421,7 @@ jobs:
421421
test -f jni/arrow_dataset_jni/x86_64/arrow_dataset_jni.dll
422422
test -f jni/arrow_orc_jni/x86_64/arrow_orc_jni.dll
423423
- name: Checkout apache/arrow-testing
424-
uses: actions/checkout@v5
424+
uses: actions/checkout@v6
425425
with:
426426
repository: apache/arrow-testing
427427
path: testing
@@ -509,7 +509,7 @@ jobs:
509509
contents: write
510510
steps:
511511
- name: Checkout
512-
uses: actions/checkout@v5
512+
uses: actions/checkout@v6
513513
with:
514514
path: site
515515
- name: Prepare branch

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
$artifact
6666
done
6767
- name: Checkout for publishing docs
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969
with:
7070
path: site
7171
- name: Publish docs

.github/workflows/test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
MAVEN: ${{ matrix.maven }}
5959
steps:
6060
- name: Checkout Arrow
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
with:
6363
fetch-depth: 0
6464
submodules: recursive
@@ -100,7 +100,7 @@ jobs:
100100
distribution: 'temurin'
101101
java-version: ${{ matrix.jdk }}
102102
- name: Checkout Arrow
103-
uses: actions/checkout@v5
103+
uses: actions/checkout@v6
104104
with:
105105
fetch-depth: 0
106106
submodules: recursive
@@ -131,7 +131,7 @@ jobs:
131131
java-version: ${{ matrix.jdk }}
132132
distribution: 'temurin'
133133
- name: Checkout Arrow
134-
uses: actions/checkout@v5
134+
uses: actions/checkout@v6
135135
with:
136136
fetch-depth: 0
137137
submodules: recursive
@@ -152,37 +152,37 @@ jobs:
152152
timeout-minutes: 60
153153
steps:
154154
- name: Checkout Arrow
155-
uses: actions/checkout@v5
155+
uses: actions/checkout@v6
156156
with:
157157
fetch-depth: 0
158158
repository: apache/arrow
159159
submodules: recursive
160160
- name: Checkout Arrow Rust
161-
uses: actions/checkout@v5
161+
uses: actions/checkout@v6
162162
with:
163163
repository: apache/arrow-rs
164164
path: rust
165165
- name: Checkout Arrow nanoarrow
166-
uses: actions/checkout@v5
166+
uses: actions/checkout@v6
167167
with:
168168
repository: apache/arrow-nanoarrow
169169
path: nanoarrow
170170
- name: Checkout Arrow .NET
171-
uses: actions/checkout@v5
171+
uses: actions/checkout@v6
172172
with:
173173
repository: apache/arrow-dotnet
174174
path: dotnet
175175
- name: Checkout Arrow Go
176-
uses: actions/checkout@v5
176+
uses: actions/checkout@v6
177177
with:
178178
repository: apache/arrow-go
179179
path: go
180180
- name: Checkout Arrow Java
181-
uses: actions/checkout@v5
181+
uses: actions/checkout@v6
182182
with:
183183
path: java
184184
- name: Checkout Arrow JavaScript
185-
uses: actions/checkout@v5
185+
uses: actions/checkout@v6
186186
with:
187187
repository: apache/arrow-js
188188
path: js

0 commit comments

Comments
 (0)