Skip to content

Commit e4052eb

Browse files
chore: 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] <support@github.com>
1 parent 6ccd53d commit e4052eb

File tree

15 files changed

+43
-43
lines changed

15 files changed

+43
-43
lines changed

.github/workflows/csharp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
dotnet-version: ${{ matrix.dotnet }}
6060
- name: Checkout ADBC
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 0
6464
submodules: recursive

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: "pre-commit"
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
with:
4343
fetch-depth: 0
4444
persist-credentials: false

.github/workflows/dev_adbc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
name: "pre-commit"
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 0
5151
persist-credentials: false

.github/workflows/dev_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
name: Process
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
with:
4646
persist-credentials: false
4747

@@ -52,7 +52,7 @@ jobs:
5252
run: |
5353
./.github/workflows/dev_pr/milestone.sh "${GITHUB_REPOSITORY}" ${{github.event.number}}
5454
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
with:
5757
fetch-depth: 0
5858
path: pr_checkout

.github/workflows/integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
name: "DuckDB Integration Tests"
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
with:
6060
fetch-depth: 0
6161
persist-credentials: false
@@ -102,7 +102,7 @@ jobs:
102102
name: "FlightSQL Integration Tests (Dremio and SQLite)"
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v5
106106
with:
107107
fetch-depth: 0
108108
persist-credentials: false
@@ -174,7 +174,7 @@ jobs:
174174
name: "PostgreSQL Integration Tests"
175175
runs-on: ubuntu-latest
176176
steps:
177-
- uses: actions/checkout@v4
177+
- uses: actions/checkout@v5
178178
with:
179179
fetch-depth: 0
180180
persist-credentials: false
@@ -271,7 +271,7 @@ jobs:
271271
name: "Snowflake Integration Tests"
272272
runs-on: ubuntu-latest
273273
steps:
274-
- uses: actions/checkout@v4
274+
- uses: actions/checkout@v5
275275
with:
276276
fetch-depth: 0
277277
persist-credentials: false
@@ -328,7 +328,7 @@ jobs:
328328
name: "FlightSQL C# Interop"
329329
runs-on: ubuntu-latest
330330
steps:
331-
- uses: actions/checkout@v4
331+
- uses: actions/checkout@v5
332332
with:
333333
fetch-depth: 0
334334
persist-credentials: false

.github/workflows/java.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
matrix:
4949
java: ['11', '17', '21', '24']
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
with:
5353
fetch-depth: 0
5454
persist-credentials: false
@@ -74,7 +74,7 @@ jobs:
7474
matrix:
7575
java: ['17', '21']
7676
steps:
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
7878
with:
7979
fetch-depth: 0
8080
persist-credentials: false
@@ -114,7 +114,7 @@ jobs:
114114
env:
115115
VCPKG_ROOT: "${{ github.workspace }}/vcpkg"
116116
steps:
117-
- uses: actions/checkout@v4
117+
- uses: actions/checkout@v5
118118
with:
119119
fetch-depth: 0
120120
persist-credentials: false
@@ -186,7 +186,7 @@ jobs:
186186
- { os: Linux, arch: amd64, vcpkg_arch: x64, runner: ubuntu-latest }
187187
- { os: macOS, arch: arm64v8, vcpkg_arch: arm64, runner: macos-latest }
188188
steps:
189-
- uses: actions/checkout@v4
189+
- uses: actions/checkout@v5
190190
with:
191191
fetch-depth: 0
192192
persist-credentials: false

.github/workflows/native-unix.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
8080
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
8181
steps:
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v5
8383
with:
8484
fetch-depth: 0
8585
persist-credentials: false
@@ -160,7 +160,7 @@ jobs:
160160
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
161161
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
162162
steps:
163-
- uses: actions/checkout@v4
163+
- uses: actions/checkout@v5
164164
with:
165165
fetch-depth: 0
166166
persist-credentials: false
@@ -215,7 +215,7 @@ jobs:
215215
matrix:
216216
os: ["ubuntu-latest"]
217217
steps:
218-
- uses: actions/checkout@v4
218+
- uses: actions/checkout@v5
219219
with:
220220
fetch-depth: 0
221221
persist-credentials: false
@@ -278,7 +278,7 @@ jobs:
278278
name: "clang-tidy"
279279
runs-on: ubuntu-latest
280280
steps:
281-
- uses: actions/checkout@v4
281+
- uses: actions/checkout@v5
282282
with:
283283
fetch-depth: 0
284284
persist-credentials: false
@@ -324,7 +324,7 @@ jobs:
324324
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
325325
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
326326
steps:
327-
- uses: actions/checkout@v4
327+
- uses: actions/checkout@v5
328328
with:
329329
fetch-depth: 0
330330
persist-credentials: false
@@ -396,7 +396,7 @@ jobs:
396396
contents: 'read'
397397
id-token: 'write'
398398
steps:
399-
- uses: actions/checkout@v4
399+
- uses: actions/checkout@v5
400400
with:
401401
fetch-depth: 0
402402
persist-credentials: false
@@ -458,7 +458,7 @@ jobs:
458458
contents: 'read'
459459
id-token: 'write'
460460
steps:
461-
- uses: actions/checkout@v4
461+
- uses: actions/checkout@v5
462462
with:
463463
fetch-depth: 0
464464
persist-credentials: false
@@ -546,7 +546,7 @@ jobs:
546546
# https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
547547
CXXFLAGS: "-D_LIBCPP_DISABLE_AVAILABILITY"
548548
steps:
549-
- uses: actions/checkout@v4
549+
- uses: actions/checkout@v5
550550
with:
551551
fetch-depth: 0
552552
persist-credentials: false
@@ -659,7 +659,7 @@ jobs:
659659
os: ["ubuntu-latest"]
660660
python: ["3.13"]
661661
steps:
662-
- uses: actions/checkout@v4
662+
- uses: actions/checkout@v5
663663
with:
664664
fetch-depth: 0
665665
persist-credentials: false

.github/workflows/native-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
matrix:
6363
os: ["windows-latest"]
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
with:
6767
fetch-depth: 0
6868
persist-credentials: false
@@ -118,7 +118,7 @@ jobs:
118118
matrix:
119119
os: ["windows-latest"]
120120
steps:
121-
- uses: actions/checkout@v4
121+
- uses: actions/checkout@v5
122122
with:
123123
fetch-depth: 0
124124
persist-credentials: false
@@ -186,7 +186,7 @@ jobs:
186186
matrix:
187187
os: ["windows-latest"]
188188
steps:
189-
- uses: actions/checkout@v4
189+
- uses: actions/checkout@v5
190190
with:
191191
fetch-depth: 0
192192
persist-credentials: false
@@ -254,7 +254,7 @@ jobs:
254254
os: ["windows-latest"]
255255
python: ["3.9", "3.13"]
256256
steps:
257-
- uses: actions/checkout@v4
257+
- uses: actions/checkout@v5
258258
with:
259259
fetch-depth: 0
260260
persist-credentials: false

.github/workflows/nightly-verify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
if: github.event_name != 'schedule' || github.repository == 'apache/arrow-adbc'
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
with:
5454
fetch-depth: 0
5555
persist-credentials: false
@@ -118,7 +118,7 @@ jobs:
118118
matrix:
119119
os: ["macos-13", "macos-latest", "ubuntu-latest", "windows-latest"]
120120
steps:
121-
- uses: actions/checkout@v4
121+
- uses: actions/checkout@v5
122122
with:
123123
fetch-depth: 0
124124
path: arrow-adbc
@@ -188,7 +188,7 @@ jobs:
188188
name: "Run Docker Tests"
189189
runs-on: ubuntu-latest
190190
steps:
191-
- uses: actions/checkout@v4
191+
- uses: actions/checkout@v5
192192
with:
193193
fetch-depth: 0
194194
path: arrow-adbc
@@ -234,7 +234,7 @@ jobs:
234234
- os: ubuntu
235235
version: "24.04"
236236
steps:
237-
- uses: actions/checkout@v4
237+
- uses: actions/checkout@v5
238238
with:
239239
fetch-depth: 0
240240
path: arrow-adbc

.github/workflows/nightly-website.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
name: "Build Website"
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
with:
4646
fetch-depth: 0
4747
persist-credentials: false
@@ -61,14 +61,14 @@ jobs:
6161
runs-on: ubuntu-latest
6262
needs: [build]
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
with:
6666
fetch-depth: 0
6767
path: site
6868
# NOTE: needed to push at the end
6969
persist-credentials: true
7070
ref: asf-site
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v5
7272
with:
7373
fetch-depth: 0
7474
path: scripts

0 commit comments

Comments
 (0)