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-connect-swift.git
The following commit(s) were added to refs/heads/main by this push:
new 7d6c0ad [SPARK-54681] Upgrade `actions/checkout` to v6
7d6c0ad is described below
commit 7d6c0ad7fb5223f4953a599f3f08a5a659ab230d
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Wed Dec 10 20:33:13 2025 -0800
[SPARK-54681] 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 #265 from dongjoon-hyun/SPARK-54681.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_and_test.yml | 26 +++++++++++++-------------
.github/workflows/publish_image.yml | 2 +-
2 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/build_and_test.yml
b/.github/workflows/build_and_test.yml
index 992e65f..f567869 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -32,7 +32,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:
@@ -44,7 +44,7 @@ jobs:
runs-on: macos-26
timeout-minutes: 20
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: swift build -c release
@@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.2 uname -a
@@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-24.04-arm
timeout-minutes: 20
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.2 uname -a
@@ -81,7 +81,7 @@ jobs:
- 15003:15002
options: --entrypoint /opt/spark/sbin/start-connect-server.sh
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.2 uname -a
@@ -100,7 +100,7 @@ jobs:
- 15003:15002
options: --entrypoint /opt/spark/sbin/start-connect-server.sh
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: |
docker run swift:6.2 uname -a
@@ -112,7 +112,7 @@ jobs:
env:
SPARK_LOCAL_IP: localhost
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: swift test --filter NOTHING -c release
- name: Test
@@ -131,7 +131,7 @@ jobs:
env:
SPARK_LOCAL_IP: localhost
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: swift test --filter NOTHING -c release
- name: Test
@@ -151,7 +151,7 @@ jobs:
SPARK_LOCAL_IP: localhost
SPARK_CONNECT_AUTHENTICATE_TOKEN: ${{ github.run_id }}-${{
github.run_attempt }}
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Build
run: swift test --filter NOTHING -c release
- name: Test
@@ -170,7 +170,7 @@ jobs:
env:
SPARK_LOCAL_IP: localhost
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Install Java
uses: actions/setup-java@v4
with:
@@ -195,7 +195,7 @@ jobs:
SPARK_LOCAL_IP: localhost
SPARK_ICEBERG_TEST_ENABLED: "true"
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Install Java
uses: actions/setup-java@v4
with:
@@ -221,7 +221,7 @@ jobs:
SPARK_LOCAL_IP: localhost
SPARK_ICEBERG_TEST_ENABLED: "true"
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v6
- name: Install Java
uses: actions/setup-java@v4
with:
@@ -245,7 +245,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/publish_image.yml
b/.github/workflows/publish_image.yml
index 0cc0dca..3d71e3b 100644
--- a/.github/workflows/publish_image.yml
+++ b/.github/workflows/publish_image.yml
@@ -29,7 +29,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Checkout repository
- uses: actions/checkout@v5
+ uses: actions/checkout@v6
with:
ref: main
- name: Build and push
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]