Skip to content

Commit 8a36f40

Browse files
committed
[SPARK-52435] Update CIs to use actions/checkout@v4 consistently
### What changes were proposed in this pull request? This PR aims to update CIs to use `actions/checkoutv4` consistently. ### Why are the changes needed? **BEFORE** ``` $ git grep actions/checkout | awk '{print $NF}' | sort | uniq -c 2 actions/checkoutv3 6 actions/checkoutv4 ``` **AFTER** ``` $ git grep actions/checkout | awk '{print $NF}' | sort | uniq -c 8 actions/checkoutv4 ``` ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs and manually check with `git grep actions/checkout`. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#238 from dongjoon-hyun/SPARK-52435. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 8d6cd6f commit 8a36f40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
- name: Check license header
2424
uses: apache/skywalking-eyes@main
2525
env:
@@ -36,7 +36,7 @@ jobs:
3636
java-version: [ 17, 21, 24 ]
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
- name: Set up JDK ${{ matrix.java-version }}
4141
uses: actions/setup-java@v4
4242
with:

0 commit comments

Comments
 (0)