Skip to content

Commit 6e2aa6d

Browse files
committed
ORC-1985: Upgrade actions/checkout to v5
### What changes were proposed in this pull request? This PR aims to upgrade `actions/checkout` to v5. ### Why are the changes needed? `v5.0.0` was released 3 weeks ago with a major improvement upgrading `NodeJS` from `20` to `24`, which will be LTS soon. - https://github.com/actions/checkout/releases/tag/v5.0.0 - actions/checkout#2226 ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #2370 from dongjoon-hyun/ORC-1985. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent b52d545 commit 6e2aa6d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build_and_test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- amazonlinux23
5353
steps:
5454
- name: Checkout
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
- name: "Test"
5757
run: |
5858
cd docker
@@ -87,7 +87,7 @@ jobs:
8787
MAVEN_SKIP_RC: true
8888
steps:
8989
- name: Checkout
90-
uses: actions/checkout@v4
90+
uses: actions/checkout@v5
9191
- name: Install Java ${{ matrix.java }}
9292
uses: actions/setup-java@v4
9393
with:
@@ -128,7 +128,7 @@ jobs:
128128
ORC_USER_SIMD_LEVEL: AVX512
129129
steps:
130130
- name: Checkout
131-
uses: actions/checkout@v4
131+
uses: actions/checkout@v5
132132
- name: "Test"
133133
run: |
134134
mkdir -p ~/.m2
@@ -142,7 +142,7 @@ jobs:
142142
runs-on: ubuntu-24.04
143143
steps:
144144
- name: Checkout
145-
uses: actions/checkout@v4
145+
uses: actions/checkout@v5
146146
with:
147147
fetch-depth: 0
148148
- name: Super-Linter
@@ -167,7 +167,7 @@ jobs:
167167
cpp-linter:
168168
runs-on: ubuntu-24.04
169169
steps:
170-
- uses: actions/checkout@v4
170+
- uses: actions/checkout@v5
171171
- name: Run build
172172
run: |
173173
mkdir build && cd build
@@ -197,7 +197,7 @@ jobs:
197197
runs-on: ubuntu-latest
198198
steps:
199199
- name: Checkout repository
200-
uses: actions/checkout@v4
200+
uses: actions/checkout@v5
201201
- name: Check license header
202202
uses: apache/skywalking-eyes@main
203203
env:
@@ -214,7 +214,7 @@ jobs:
214214
runs-on: macos-${{ matrix.version }}
215215
steps:
216216
- name: Checkout repository
217-
uses: actions/checkout@v4
217+
uses: actions/checkout@v5
218218
- name: Install dependencies
219219
run: |
220220
brew update
@@ -242,7 +242,7 @@ jobs:
242242
- macos-15
243243
steps:
244244
- name: Checkout
245-
uses: actions/checkout@v4
245+
uses: actions/checkout@v5
246246
- uses: actions/setup-python@v5
247247
with:
248248
python-version: '3.x'

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: github.repository == 'apache/orc'
4141
steps:
4242
- name: Checkout ORC repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
with:
4545
repository: apache/orc
4646
ref: 'main'

.github/workflows/publish_snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: github.repository == 'apache/orc'
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

1515
- uses: actions/setup-java@v3
1616
with:

.github/workflows/sanitizer_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
cxx: clang++
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
- name: Install dependencies
5151
run: |
5252
sudo apt-get update

0 commit comments

Comments
 (0)