Skip to content

Commit 5e8df4f

Browse files
committed
[SPARK-54680] Upgrade actions/checkout to v6
### What changes were proposed in this pull request? This PR aims to upgrade `actions/checkout` to v6. ### Why are the changes needed? To use more secure version: - actions/checkout#2286 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #430 from dongjoon-hyun/SPARK-54680. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent df7ef29 commit 5e8df4f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build_and_test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
timeout-minutes: 20
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Check license header
2525
uses: apache/skywalking-eyes@main
2626
env:
@@ -38,7 +38,7 @@ jobs:
3838
java-version: [ 17, 21, 25 ]
3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
- name: Set up JDK ${{ matrix.java-version }}
4343
uses: actions/setup-java@v4
4444
with:
@@ -54,7 +54,7 @@ jobs:
5454
timeout-minutes: 20
5555
steps:
5656
- name: Checkout repository
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858
- name: Set up JDK 25
5959
uses: actions/setup-java@v4
6060
with:
@@ -97,7 +97,7 @@ jobs:
9797
test-group: watched-namespaces
9898
steps:
9999
- name: Checkout repository
100-
uses: actions/checkout@v5
100+
uses: actions/checkout@v6
101101
- name: Set up JDK 25
102102
uses: actions/setup-java@v4
103103
with:
@@ -154,7 +154,7 @@ jobs:
154154
timeout-minutes: 20
155155
steps:
156156
- name: Checkout repository
157-
uses: actions/checkout@v5
157+
uses: actions/checkout@v6
158158
with:
159159
fetch-depth: 0
160160
- name: Super-Linter

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
if: github.repository == 'apache/spark-kubernetes-operator'
4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
- name: Setup Pages
4646
uses: actions/configure-pages@v5
4747
- name: Upload artifact

.github/workflows/publish_snapshot_chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
branch: ${{ fromJSON( inputs.branch || '["main"]' ) }}
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
ref: ${{ matrix.branch }}
2929
- name: Set up JDK 25

.github/workflows/publish_snapshot_dockerhub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
username: ${{ secrets.DOCKERHUB_USER }}
3333
password: ${{ secrets.DOCKERHUB_TOKEN }}
3434
- name: Checkout repository
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
ref: ${{ matrix.branch }}
3838
- name: Build and push

0 commit comments

Comments
 (0)