Skip to content

Commit 3bf1550

Browse files
MINOR: [CI] 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) - [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 db1a8a9 commit 3bf1550

18 files changed

+48
-48
lines changed

.github/workflows/archery.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
timeout-minutes: 15
5959
steps:
6060
- name: Checkout Arrow
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 0
6464
- name: Git Fixup

.github/workflows/comment_bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
pull-requests: write
3737
steps:
3838
- name: Checkout Arrow
39-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
39+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.0.0
4040
with:
4141
path: arrow
4242
# fetch the tags for version number generation

.github/workflows/cpp.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
UBUNTU: ${{ matrix.ubuntu }}
111111
steps:
112112
- name: Checkout Arrow
113-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
113+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.0.0
114114
with:
115115
fetch-depth: 0
116116
submodules: recursive
@@ -163,7 +163,7 @@ jobs:
163163
timeout-minutes: 45
164164
steps:
165165
- name: Checkout Arrow
166-
uses: actions/checkout@v4
166+
uses: actions/checkout@v5
167167
with:
168168
fetch-depth: 0
169169
submodules: recursive
@@ -218,7 +218,7 @@ jobs:
218218
sysctl -a | grep cpu
219219
sysctl -a | grep "hw.optional"
220220
- name: Checkout Arrow
221-
uses: actions/checkout@v4
221+
uses: actions/checkout@v5
222222
with:
223223
fetch-depth: 0
224224
submodules: recursive
@@ -334,7 +334,7 @@ jobs:
334334
/d 1 `
335335
/f
336336
- name: Checkout Arrow
337-
uses: actions/checkout@v4
337+
uses: actions/checkout@v5
338338
with:
339339
fetch-depth: 0
340340
submodules: recursive
@@ -431,7 +431,7 @@ jobs:
431431
/d 1 `
432432
/f
433433
- name: Checkout Arrow
434-
uses: actions/checkout@v4
434+
uses: actions/checkout@v5
435435
with:
436436
fetch-depth: 0
437437
submodules: recursive

.github/workflows/cpp_extra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
DOCKER_VOLUME_PREFIX: ".docker/"
138138
steps:
139139
- name: Checkout Arrow
140-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
140+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
141141
with:
142142
fetch-depth: 0
143143
submodules: recursive

.github/workflows/csharp.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
python-version: 3
6464
- name: Checkout Arrow
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666
with:
6767
fetch-depth: 0
6868
- name: Build
@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
dotnet-version: ${{ matrix.dotnet }}
8989
- name: Checkout Arrow
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v5
9191
with:
9292
fetch-depth: 0
9393
- name: Build
@@ -116,7 +116,7 @@ jobs:
116116
with:
117117
python-version: 3.12
118118
- name: Checkout Arrow
119-
uses: actions/checkout@v4
119+
uses: actions/checkout@v5
120120
with:
121121
fetch-depth: 0
122122
- name: Build
@@ -137,7 +137,7 @@ jobs:
137137
steps:
138138
- name: Checkout for utilities
139139
if: github.ref_type == 'tag'
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141
with:
142142
path: arrow
143143
- name: Download source archive
@@ -155,7 +155,7 @@ jobs:
155155
GH_TOKEN: ${{ github.token }}
156156
- name: Checkout
157157
if: github.ref_type != 'tag'
158-
uses: actions/checkout@v4
158+
uses: actions/checkout@v5
159159
with:
160160
fetch-depth: 0
161161
- name: Prepare version

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
timeout-minutes: 15
4848
steps:
4949
- name: Checkout Arrow
50-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
50+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.0.0
5151
with:
5252
fetch-depth: 0
5353
- name: Install pre-commit
@@ -86,7 +86,7 @@ jobs:
8686
GIT_COMMITTER_EMAIL: "github-actions[bot]@users.noreply.github.com"
8787
steps:
8888
- name: Checkout Arrow
89-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
89+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.0.0
9090
with:
9191
fetch-depth: 0
9292
- name: Install Python

.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: Process
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
46+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.0.0
4747
with:
4848
repository: apache/arrow
4949
ref: main

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
JDK: 17
4040
steps:
4141
- name: Checkout Arrow
42-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
42+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.0.0
4343
with:
4444
fetch-depth: 0
4545
- name: Free up disk space

.github/workflows/docs_light.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
PYTHON: "3.9"
5050
steps:
5151
- name: Checkout Arrow
52-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
52+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.0.0
5353
with:
5454
fetch-depth: 0
5555
- name: Cache Docker Volumes

.github/workflows/integration.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,32 +66,32 @@ jobs:
6666
timeout-minutes: 60
6767
steps:
6868
- name: Checkout Arrow
69-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
69+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7070
with:
7171
fetch-depth: 0
7272
submodules: recursive
7373
- name: Checkout Arrow Rust
74-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
74+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7575
with:
7676
repository: apache/arrow-rs
7777
path: rust
7878
- name: Checkout Arrow nanoarrow
79-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
79+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8080
with:
8181
repository: apache/arrow-nanoarrow
8282
path: nanoarrow
8383
- name: Checkout Arrow Go
84-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
84+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8585
with:
8686
repository: apache/arrow-go
8787
path: go
8888
- name: Checkout Arrow Java
89-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
89+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9090
with:
9191
repository: apache/arrow-java
9292
path: java
9393
- name: Checkout Arrow JS
94-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
94+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9595
with:
9696
repository: apache/arrow-js
9797
path: js

0 commit comments

Comments
 (0)