Skip to content

Commit 2f85490

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

5 files changed

Lines changed: 23 additions & 23 deletions

File tree

.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@v6
36+
- uses: actions/checkout@v7
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@v6
46+
- uses: actions/checkout@v7
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@v6
41+
uses: actions/checkout@v7
4242
with:
4343
submodules: recursive
4444
- name: Prepare for tag
@@ -113,17 +113,17 @@ jobs:
113113
ci/scripts/download_cpp.sh
114114
- name: Checkout Apache Arrow C++
115115
if: github.event_name == 'schedule'
116-
uses: actions/checkout@v6
116+
uses: actions/checkout@v7
117117
with:
118118
repository: apache/arrow
119119
path: arrow
120120
- name: Checkout apache/arrow-testing
121-
uses: actions/checkout@v6
121+
uses: actions/checkout@v7
122122
with:
123123
repository: apache/arrow-testing
124124
path: arrow/testing
125125
- name: Checkout apache/parquet-testing
126-
uses: actions/checkout@v6
126+
uses: actions/checkout@v7
127127
with:
128128
repository: apache/parquet-testing
129129
path: arrow/cpp/submodules/parquet-testing
@@ -180,17 +180,17 @@ jobs:
180180
ci/scripts/download_cpp.sh
181181
- name: Checkout Apache Arrow C++
182182
if: github.event_name == 'schedule'
183-
uses: actions/checkout@v6
183+
uses: actions/checkout@v7
184184
with:
185185
repository: apache/arrow
186186
path: arrow
187187
- name: Checkout apache/arrow-testing
188-
uses: actions/checkout@v6
188+
uses: actions/checkout@v7
189189
with:
190190
repository: apache/arrow-testing
191191
path: arrow/testing
192192
- name: Checkout apache/parquet-testing
193-
uses: actions/checkout@v6
193+
uses: actions/checkout@v7
194194
with:
195195
repository: apache/parquet-testing
196196
path: arrow/cpp/submodules/parquet-testing
@@ -310,7 +310,7 @@ jobs:
310310
ci/scripts/download_cpp.sh
311311
- name: Checkout Apache Arrow C++
312312
if: github.event_name == 'schedule'
313-
uses: actions/checkout@v6
313+
uses: actions/checkout@v7
314314
with:
315315
repository: apache/arrow
316316
path: arrow
@@ -409,7 +409,7 @@ jobs:
409409
test -f jni/arrow_dataset_jni/x86_64/arrow_dataset_jni.dll
410410
test -f jni/arrow_orc_jni/x86_64/arrow_orc_jni.dll
411411
- name: Checkout apache/arrow-testing
412-
uses: actions/checkout@v6
412+
uses: actions/checkout@v7
413413
with:
414414
repository: apache/arrow-testing
415415
path: testing
@@ -497,7 +497,7 @@ jobs:
497497
contents: write
498498
steps:
499499
- name: Checkout
500-
uses: actions/checkout@v6
500+
uses: actions/checkout@v7
501501
with:
502502
path: site
503503
- 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@v6
68+
uses: actions/checkout@v7
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@v6
61+
uses: actions/checkout@v7
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@v6
103+
uses: actions/checkout@v7
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@v6
134+
uses: actions/checkout@v7
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@v6
155+
uses: actions/checkout@v7
156156
with:
157157
fetch-depth: 0
158158
repository: apache/arrow
159159
submodules: recursive
160160
- name: Checkout Arrow Rust
161-
uses: actions/checkout@v6
161+
uses: actions/checkout@v7
162162
with:
163163
repository: apache/arrow-rs
164164
path: rust
165165
- name: Checkout Arrow nanoarrow
166-
uses: actions/checkout@v6
166+
uses: actions/checkout@v7
167167
with:
168168
repository: apache/arrow-nanoarrow
169169
path: nanoarrow
170170
- name: Checkout Arrow .NET
171-
uses: actions/checkout@v6
171+
uses: actions/checkout@v7
172172
with:
173173
repository: apache/arrow-dotnet
174174
path: dotnet
175175
- name: Checkout Arrow Go
176-
uses: actions/checkout@v6
176+
uses: actions/checkout@v7
177177
with:
178178
repository: apache/arrow-go
179179
path: go
180180
- name: Checkout Arrow Java
181-
uses: actions/checkout@v6
181+
uses: actions/checkout@v7
182182
with:
183183
path: java
184184
- name: Checkout Arrow JavaScript
185-
uses: actions/checkout@v6
185+
uses: actions/checkout@v7
186186
with:
187187
repository: apache/arrow-js
188188
path: js

0 commit comments

Comments
 (0)