This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
The following commit(s) were added to refs/heads/main by this push:
new fa43124e build(deps): bump actions/checkout from 6 to 7 (#632)
fa43124e is described below
commit fa43124ed605d8559f1c96e1ed2651ae9d7f9542
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Sep 1 23:09:37 2026 -0700
build(deps): bump actions/checkout from 6 to 7 (#632)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 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/v6...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/ci.yml | 10 +++++-----
.github/workflows/code.yml | 2 +-
.github/workflows/pr.yml | 2 +-
.github/workflows/release.yml | 10 +++++-----
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 87cf4f81..e346a945 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -59,7 +59,7 @@ jobs:
image: xd009642/tarpaulin:0.32.7
options: --security-opt seccomp=unconfined
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Install system dependencies
# librocksdb-sys generates its bindings with bindgen at build time,
which
# needs libclang. The hosted runners ship it; this container does not.
@@ -158,7 +158,7 @@ jobs:
# disable until https://github.com/apache/hudi-rs/issues/445 is resolved
if: false
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Run unit tests on Windows with no coverage report
run: cargo test --no-fail-fast --all-targets --all-features --workspace
@@ -178,7 +178,7 @@ jobs:
python-version: '3.10'
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Install protobuf compiler (Linux)
if: runner.os == 'Linux'
@@ -251,7 +251,7 @@ jobs:
app-path: [ 'datafusion', 'hudi-file-group-api/cpp',
'hudi-table-api/rust' , 'hudi-table-api/python' ]
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Set up Docker Buildx
uses:
docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
- name: Pre-pull base images
@@ -288,7 +288,7 @@ jobs:
needs: [ rust-tests, python-tests ]
if: github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- uses: actions/download-artifact@v8
with:
pattern: cov-report-*
diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml
index 71e87cb3..68a05aaf 100644
--- a/.github/workflows/code.yml
+++ b/.github/workflows/code.yml
@@ -30,7 +30,7 @@ jobs:
check-code:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Check license header
uses: apache/skywalking-eyes/[email protected]
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index e71811fb..b3ff46d2 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -30,7 +30,7 @@ jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v6
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 6557ae61..b699b83a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -27,7 +27,7 @@ jobs:
name: Validate git tag
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: compare git tag with cargo metadata
run: |
CURR_VER=$( grep version Cargo.toml | head -n 1 | awk '{print $3}' |
tr -d '"' )
@@ -49,7 +49,7 @@ jobs:
- "hudi-datafusion"
- "hudi"
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- name: Install protobuf compiler
run: |
@@ -71,7 +71,7 @@ jobs:
target: [ x86_64-apple-darwin, aarch64-apple-darwin ]
runs-on: macos-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.13'
@@ -94,7 +94,7 @@ jobs:
needs: validate-release-tag
runs-on: windows-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.13'
@@ -117,7 +117,7 @@ jobs:
needs: validate-release-tag
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v6
+ - uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.13'