This is an automated email from the ASF dual-hosted git repository.
zhouyuan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gluten.git
The following commit(s) were added to refs/heads/main by this push:
new c3714c1f77 Bump actions/checkout from 4 to 7 (#12637)
c3714c1f77 is described below
commit c3714c1f779a90cad82898064d62bb55571f7439
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Jul 29 07:45:05 2026 +0100
Bump actions/checkout from 4 to 7 (#12637)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v7)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/build_bundle_package.yml | 4 +--
.github/workflows/build_release.yml | 2 +-
.github/workflows/ch_code_style.yml | 4 +--
.github/workflows/check_license.yml | 2 +-
.github/workflows/clickhouse_be_trigger.yml | 2 +-
.github/workflows/code_format.yml | 2 +-
.github/workflows/cpp_clang_tidy.yml | 2 +-
.github/workflows/docker_image.yml | 16 +++++-----
.github/workflows/flink.yml | 2 +-
.github/workflows/pr_bot.yml | 2 +-
.github/workflows/scala_code_format.yml | 2 +-
.github/workflows/velox_backend_ansi.yml | 14 ++++-----
.github/workflows/velox_backend_arm.yml | 6 ++--
.github/workflows/velox_backend_cache.yml | 10 +++----
.github/workflows/velox_backend_enhanced.yml | 8 ++---
.github/workflows/velox_backend_x86.yml | 44 ++++++++++++++--------------
.github/workflows/velox_nightly.yml | 20 ++++++-------
.github/workflows/velox_weekly.yml | 10 +++----
18 files changed, 76 insertions(+), 76 deletions(-)
diff --git a/.github/workflows/build_bundle_package.yml
b/.github/workflows/build_bundle_package.yml
index ddefa84948..29a70215ff 100644
--- a/.github/workflows/build_bundle_package.yml
+++ b/.github/workflows/build_bundle_package.yml
@@ -43,7 +43,7 @@ jobs:
build-native-lib:
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref }}
- name: Get Ccache
@@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-22.04
container: centos:8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ github.event.inputs.ref }}
- name: Download All Artifacts
diff --git a/.github/workflows/build_release.yml
b/.github/workflows/build_release.yml
index d96a43934d..e400d17268 100644
--- a/.github/workflows/build_release.yml
+++ b/.github/workflows/build_release.yml
@@ -25,7 +25,7 @@ jobs:
build-velox-backend-release:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Build
run: |
docker pull apache/gluten:vcpkg-centos-7-gcc13
diff --git a/.github/workflows/ch_code_style.yml
b/.github/workflows/ch_code_style.yml
index cfa2386c19..b536953450 100644
--- a/.github/workflows/ch_code_style.yml
+++ b/.github/workflows/ch_code_style.yml
@@ -34,7 +34,7 @@ jobs:
- check: 'cpp-ch'
exclude: ''
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Run clang-format style check for C/C++ programs.
uses: jidicula/[email protected]
with:
@@ -54,7 +54,7 @@ jobs:
apt install git python3-pip -y
pip3 install --user cmake-format
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Check CMake format
run: |
git config --global --add safe.directory $GITHUB_WORKSPACE
diff --git a/.github/workflows/check_license.yml
b/.github/workflows/check_license.yml
index 9d4b395270..3740ecd276 100644
--- a/.github/workflows/check_license.yml
+++ b/.github/workflows/check_license.yml
@@ -24,7 +24,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Check License Header
run: |
git fetch --recurse-submodules=no origin main
${{github.event.pull_request.base.sha}}
diff --git a/.github/workflows/clickhouse_be_trigger.yml
b/.github/workflows/clickhouse_be_trigger.yml
index 5fb136d489..38641e1e3d 100644
--- a/.github/workflows/clickhouse_be_trigger.yml
+++ b/.github/workflows/clickhouse_be_trigger.yml
@@ -44,7 +44,7 @@ jobs:
permissions: write-all
steps:
- name: Checkout code
- uses: actions/checkout@v4
+ uses: actions/checkout@v7
- name: Sleep for Dev PR workflow done
run: |
sleep 15
diff --git a/.github/workflows/code_format.yml
b/.github/workflows/code_format.yml
index 67a61e19e7..93584a0715 100644
--- a/.github/workflows/code_format.yml
+++ b/.github/workflows/code_format.yml
@@ -40,7 +40,7 @@ jobs:
apt install --no-install-recommends -y clang-format-15
pip3 install cmake_format black pyyaml regex
update-alternatives --install /usr/bin/clang-format clang-format
"$(command -v clang-format-15)" 15
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Check
diff --git a/.github/workflows/cpp_clang_tidy.yml
b/.github/workflows/cpp_clang_tidy.yml
index c720c23252..759173f6a8 100644
--- a/.github/workflows/cpp_clang_tidy.yml
+++ b/.github/workflows/cpp_clang_tidy.yml
@@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-22.04
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ github.event.workflow_run.head_sha }}
fetch-depth: 0
diff --git a/.github/workflows/docker_image.yml
b/.github/workflows/docker_image.yml
index 063248cf2a..6ad9947fc3 100644
--- a/.github/workflows/docker_image.yml
+++ b/.github/workflows/docker_image.yml
@@ -39,7 +39,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Set up Docker Buildx
uses:
docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
@@ -71,7 +71,7 @@ jobs:
- run: df -h | sort -k 5 -nr # check disk space for debug
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Set up Docker Buildx
uses:
docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
@@ -95,7 +95,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Set up Docker Buildx
uses:
docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
@@ -126,7 +126,7 @@ jobs:
sudo docker builder prune -a
- run: df -h | sort -k 5 -nr # check disk space for debug
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Set up Docker Buildx
uses:
docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
@@ -154,7 +154,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Docker meta
id: meta
@@ -204,7 +204,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Docker meta
id: meta
@@ -256,7 +256,7 @@ jobs:
JDK_VERSION: 1.8.0
steps:
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Docker meta
id: meta
@@ -319,7 +319,7 @@ jobs:
JDK_VERSION: 1.8.0
steps:
- name: Checkout repository
- uses: actions/checkout@v6
+ uses: actions/checkout@v7
- name: Docker meta
id: meta
diff --git a/.github/workflows/flink.yml b/.github/workflows/flink.yml
index 9d7906a1e9..27b5aad5b4 100644
--- a/.github/workflows/flink.yml
+++ b/.github/workflows/flink.yml
@@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-22.04
container: apache/gluten:centos-8-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Restore ccache
uses: actions/cache/restore@v4
with:
diff --git a/.github/workflows/pr_bot.yml b/.github/workflows/pr_bot.yml
index 0c1eba809c..60e346e51e 100644
--- a/.github/workflows/pr_bot.yml
+++ b/.github/workflows/pr_bot.yml
@@ -41,7 +41,7 @@ jobs:
permissions:
pull-requests: write
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Link referenced issues
if: |
github.event.action == 'opened' ||
diff --git a/.github/workflows/scala_code_format.yml
b/.github/workflows/scala_code_format.yml
index b8fa55c60b..8bbaf7b81e 100644
--- a/.github/workflows/scala_code_format.yml
+++ b/.github/workflows/scala_code_format.yml
@@ -42,7 +42,7 @@ jobs:
format-check:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Check
diff --git a/.github/workflows/velox_backend_ansi.yml
b/.github/workflows/velox_backend_ansi.yml
index 0be11a05a6..db67bd92ad 100644
--- a/.github/workflows/velox_backend_ansi.yml
+++ b/.github/workflows/velox_backend_ansi.yml
@@ -101,7 +101,7 @@ jobs:
if: (inputs.mode || needs.check-comment.outputs.mode) != 'analyze-only'
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ needs.check-comment.outputs.pr_sha }}
- name: Get Ccache
@@ -144,7 +144,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-9-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ needs.check-comment.outputs.pr_sha }}
- name: Download Native Lib
@@ -216,7 +216,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-9-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ needs.check-comment.outputs.pr_sha }}
- name: Download Native Lib
@@ -298,7 +298,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-9-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ needs.check-comment.outputs.pr_sha }}
- name: Download Native Lib
@@ -370,7 +370,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-9-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ needs.check-comment.outputs.pr_sha }}
- name: Download Native Lib
@@ -459,7 +459,7 @@ jobs:
pull-requests: write
models: read
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ needs.check-comment.outputs.pr_sha }}
- name: Download spark41 test reports
@@ -504,7 +504,7 @@ jobs:
pull-requests: write
models: read
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
with:
ref: ${{ needs.check-comment.outputs.pr_sha }}
- name: Find latest ANSI workflow run with artifacts
diff --git a/.github/workflows/velox_backend_arm.yml
b/.github/workflows/velox_backend_arm.yml
index 5d7db31bdf..71a9806920 100644
--- a/.github/workflows/velox_backend_arm.yml
+++ b/.github/workflows/velox_backend_arm.yml
@@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-24.04-arm
container: apache/gluten:vcpkg-centos-9
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Install Stash restore dependencies # the stash action needs gh
and jq, absent from this container
run: |
case "$(uname -m)" in
@@ -111,7 +111,7 @@ jobs:
runs-on: ubuntu-24.04-arm
container: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -147,7 +147,7 @@ jobs:
runs-on: ubuntu-24.04-arm
container: apache/gluten:centos-9-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Install Stash restore dependencies # the stash action needs gh
and jq, absent from this container
run: |
case "$(uname -m)" in
diff --git a/.github/workflows/velox_backend_cache.yml
b/.github/workflows/velox_backend_cache.yml
index dae09f7a9e..12169eb1ef 100644
--- a/.github/workflows/velox_backend_cache.yml
+++ b/.github/workflows/velox_backend_cache.yml
@@ -33,7 +33,7 @@ jobs:
if: ${{ startsWith(github.repository, 'apache/') }}
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v3
with:
@@ -70,7 +70,7 @@ jobs:
matrix:
os: [ ubuntu-22.04, ubuntu-24.04-arm ]
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v3
with:
@@ -103,7 +103,7 @@ jobs:
os: [ ubuntu-22.04, ubuntu-24.04-arm ]
container: apache/gluten:centos-9-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v3
with:
@@ -134,7 +134,7 @@ jobs:
if: ${{ startsWith(github.repository, 'apache/') }}
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v3
with:
@@ -175,7 +175,7 @@ jobs:
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
/opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force
sudo docker builder prune -a
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v3
with:
diff --git a/.github/workflows/velox_backend_enhanced.yml
b/.github/workflows/velox_backend_enhanced.yml
index d4b77ecefa..b18da11cfe 100644
--- a/.github/workflows/velox_backend_enhanced.yml
+++ b/.github/workflows/velox_backend_enhanced.yml
@@ -55,7 +55,7 @@ jobs:
build-native-lib-centos-7:
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache from Apache Stash
id: ccache-stash
uses:
apache/infrastructure-actions/stash/restore@0ba14156c9f4c3cfbe4b0c9f36339ab0f8d81e53
@@ -102,7 +102,7 @@ jobs:
runs-on: ubuntu-22.04
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -158,7 +158,7 @@ jobs:
LC_ALL: C.UTF-8
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -208,7 +208,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-8-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
diff --git a/.github/workflows/velox_backend_x86.yml
b/.github/workflows/velox_backend_x86.yml
index 0af9d6ad31..5c3f245914 100644
--- a/.github/workflows/velox_backend_x86.yml
+++ b/.github/workflows/velox_backend_x86.yml
@@ -58,7 +58,7 @@ jobs:
build-native-lib-centos-7:
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache from Apache Stash
id: ccache-stash
uses:
apache/infrastructure-actions/stash/restore@0ba14156c9f4c3cfbe4b0c9f36339ab0f8d81e53
@@ -143,7 +143,7 @@ jobs:
runs-on: ubuntu-22.04
container: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -260,7 +260,7 @@ jobs:
runs-on: ubuntu-22.04
container: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -322,7 +322,7 @@ jobs:
java: [ "java-8" ]
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -376,7 +376,7 @@ jobs:
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force > /dev/null
df -h
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -487,7 +487,7 @@ jobs:
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo docker image prune --all --force > /dev/null
df -h
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -525,7 +525,7 @@ jobs:
runs-on: ubuntu-22.04
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -571,7 +571,7 @@ jobs:
runs-on: ubuntu-22.04
container: centos:8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Native Artifacts
uses: actions/download-artifact@v8
with:
@@ -640,7 +640,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -695,7 +695,7 @@ jobs:
LC_ALL: C.UTF-8
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -744,7 +744,7 @@ jobs:
group: [1, 2, 3]
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -814,7 +814,7 @@ jobs:
LC_ALL: C.UTF-8
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -868,7 +868,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -936,7 +936,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -1000,7 +1000,7 @@ jobs:
LC_ALL: C.UTF-8
container: apache/gluten:centos-8-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -1046,7 +1046,7 @@ jobs:
runs-on: ubuntu-22.04
container: apache/gluten:centos-9-jdk8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Install Stash restore dependencies # the stash action needs gh
and jq, absent from this container
run: |
case "$(uname -m)" in
@@ -1135,7 +1135,7 @@ jobs:
sudo docker builder prune -a
- run: df -h | sort -k 5 -nr # check disk space for debug
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache from Apache Stash
id: ccache-stash
uses:
apache/infrastructure-actions/stash/restore@0ba14156c9f4c3cfbe4b0c9f36339ab0f8d81e53
@@ -1179,7 +1179,7 @@ jobs:
runs-on: ubuntu-22.04
container: apache/gluten:centos-8-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Build with fast-build profile (Spark 4.0, Java 17)
run: |
cd $GITHUB_WORKSPACE/
@@ -1196,7 +1196,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-8-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -1264,7 +1264,7 @@ jobs:
LC_ALL: C.UTF-8
container: apache/gluten:centos-8-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -1321,7 +1321,7 @@ jobs:
SPARK_TESTING: true
container: apache/gluten:centos-9-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -1395,7 +1395,7 @@ jobs:
LC_ALL: C.UTF-8
container: apache/gluten:centos-9-jdk17
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
diff --git a/.github/workflows/velox_nightly.yml
b/.github/workflows/velox_nightly.yml
index 5b7086538f..b776d22e07 100644
--- a/.github/workflows/velox_nightly.yml
+++ b/.github/workflows/velox_nightly.yml
@@ -37,7 +37,7 @@ jobs:
if: ${{ startsWith(github.repository, 'apache/') }}
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v4
with:
@@ -75,7 +75,7 @@ jobs:
runs-on: ubuntu-22.04
container: centos:8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -113,7 +113,7 @@ jobs:
runs-on: ubuntu-22.04
container: centos:8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -151,7 +151,7 @@ jobs:
runs-on: ubuntu-22.04
container: quay.io/centos/centos:stream9
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -186,7 +186,7 @@ jobs:
runs-on: ubuntu-24.04-arm
container: apache/gluten:vcpkg-centos-8-gcc13
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v4
with:
@@ -226,7 +226,7 @@ jobs:
runs-on: ubuntu-22.04-arm
container: centos:8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -264,7 +264,7 @@ jobs:
runs-on: ubuntu-22.04-arm
container: centos:8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -303,7 +303,7 @@ jobs:
runs-on: ubuntu-22.04-arm
container: quay.io/centos/centos:stream9
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
@@ -426,7 +426,7 @@ jobs:
if: ${{ startsWith(github.repository, 'apache/') }}
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Get Ccache
uses: actions/cache/restore@v4
with:
@@ -463,7 +463,7 @@ jobs:
runs-on: ubuntu-22.04
container: centos:8
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
diff --git a/.github/workflows/velox_weekly.yml
b/.github/workflows/velox_weekly.yml
index af8a17530c..dab8d5c1b0 100644
--- a/.github/workflows/velox_weekly.yml
+++ b/.github/workflows/velox_weekly.yml
@@ -47,7 +47,7 @@ jobs:
container: ${{ matrix.os }}
steps:
- name: Checkout repository
- uses: actions/checkout@v4
+ uses: actions/checkout@v7
- name: Install Stash restore dependencies # the stash action needs gh,
jq, and python3 (>=3.7), absent from this container
run: |
if [ "${{ matrix.os }}" = "centos:8" ]; then
@@ -124,7 +124,7 @@ jobs:
runs-on: ubuntu-22.04
container: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Install Stash restore dependencies # the stash action needs gh,
jq, and python3, absent from this container
run: |
case "$(uname -m)" in
@@ -209,7 +209,7 @@ jobs:
runs-on: ubuntu-24.04-arm
container: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Install dependencies
run: |
dnf update -y && dnf install -y java-1.8.0-openjdk-devel sudo patch
git perl ccache curl python3
@@ -267,7 +267,7 @@ jobs:
runs-on: ubuntu-24.04-arm
container: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
- name: Install dependencies
run: |
dnf update -y && dnf install -y java-1.8.0-openjdk-devel sudo patch
git perl curl python3
@@ -323,7 +323,7 @@ jobs:
env:
INSTALL_PREFIX: /tmp/deps-install
steps:
- - uses: actions/checkout@v5
+ - uses: actions/checkout@v7
- name: Set up Java 17
uses: actions/setup-java@v5
with:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]