This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new 5e8df4f  [SPARK-54680] Upgrade `actions/checkout` to v6
5e8df4f is described below

commit 5e8df4ffed0cc6ba84db2f58da1fa7172c81ca15
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Dec 10 20:32:17 2025 -0800

    [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:
    - https://github.com/actions/checkout/pull/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 <[email protected]>
    Signed-off-by: Dongjoon Hyun <[email protected]>
---
 .github/workflows/build_and_test.yml             | 10 +++++-----
 .github/workflows/pages.yml                      |  2 +-
 .github/workflows/publish_snapshot_chart.yml     |  2 +-
 .github/workflows/publish_snapshot_dockerhub.yml |  2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index aed7cbe..4718759 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -20,7 +20,7 @@ jobs:
     timeout-minutes: 20
     steps:
       - name: Checkout repository
-        uses: actions/checkout@v5
+        uses: actions/checkout@v6
       - name: Check license header
         uses: apache/skywalking-eyes@main
         env:
@@ -38,7 +38,7 @@ jobs:
         java-version: [ 17, 21, 25 ]
     steps:
       - name: Checkout repository
-        uses: actions/checkout@v5
+        uses: actions/checkout@v6
       - name: Set up JDK ${{ matrix.java-version }}
         uses: actions/setup-java@v4
         with:
@@ -54,7 +54,7 @@ jobs:
     timeout-minutes: 20
     steps:
       - name: Checkout repository
-        uses: actions/checkout@v5
+        uses: actions/checkout@v6
       - name: Set up JDK 25
         uses: actions/setup-java@v4
         with:
@@ -97,7 +97,7 @@ jobs:
             test-group: watched-namespaces
     steps:
       - name: Checkout repository
-        uses: actions/checkout@v5
+        uses: actions/checkout@v6
       - name: Set up JDK 25
         uses: actions/setup-java@v4
         with:
@@ -154,7 +154,7 @@ jobs:
     timeout-minutes: 20
     steps:
       - name: Checkout repository
-        uses: actions/checkout@v5
+        uses: actions/checkout@v6
         with:
           fetch-depth: 0
       - name: Super-Linter
diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml
index 1940138..cccb221 100644
--- a/.github/workflows/pages.yml
+++ b/.github/workflows/pages.yml
@@ -41,7 +41,7 @@ jobs:
     if: github.repository == 'apache/spark-kubernetes-operator'
     steps:
       - name: Checkout repository
-        uses: actions/checkout@v5
+        uses: actions/checkout@v6
       - name: Setup Pages
         uses: actions/configure-pages@v5
       - name: Upload artifact
diff --git a/.github/workflows/publish_snapshot_chart.yml 
b/.github/workflows/publish_snapshot_chart.yml
index 9d7b984..b48f9bc 100644
--- a/.github/workflows/publish_snapshot_chart.yml
+++ b/.github/workflows/publish_snapshot_chart.yml
@@ -23,7 +23,7 @@ jobs:
         branch: ${{ fromJSON( inputs.branch || '["main"]' ) }}
     steps:
     - name: Checkout repository
-      uses: actions/checkout@v5
+      uses: actions/checkout@v6
       with:
         ref: ${{ matrix.branch }}
     - name: Set up JDK 25
diff --git a/.github/workflows/publish_snapshot_dockerhub.yml 
b/.github/workflows/publish_snapshot_dockerhub.yml
index 70a0b3d..0d6861e 100644
--- a/.github/workflows/publish_snapshot_dockerhub.yml
+++ b/.github/workflows/publish_snapshot_dockerhub.yml
@@ -32,7 +32,7 @@ jobs:
         username: ${{ secrets.DOCKERHUB_USER }}
         password: ${{ secrets.DOCKERHUB_TOKEN }}
     - name: Checkout repository
-      uses: actions/checkout@v5
+      uses: actions/checkout@v6
       with:
         ref: ${{ matrix.branch }}
     - name: Build and push


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to