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

xushiyan 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 bc4006b  build(deps): bump actions/checkout from 4 to 5 (#416)
bc4006b is described below

commit bc4006bd4da2c782b551ba654bce7135b5d69337
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Mon Aug 11 23:18:06 2025 -0500

    build(deps): bump actions/checkout from 4 to 5 (#416)
    
    Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
    - [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...v5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '5'
      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      |  8 ++++----
 .github/workflows/code.yml    |  2 +-
 .github/workflows/pr.yml      |  2 +-
 .github/workflows/release.yml | 10 +++++-----
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f8c46bf..442b74d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -60,7 +60,7 @@ jobs:
       image: xd009642/tarpaulin:0.32.7
       options: --security-opt seccomp=unconfined
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - name: Cache dependencies
         uses: Swatinem/rust-cache@v2
       - name: Rust unit tests with coverage report
@@ -93,7 +93,7 @@ jobs:
             python-version: '3.9'
     runs-on: ${{ matrix.os }}
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
         
       - name: install uv and set the python version
         uses: astral-sh/setup-uv@v6
@@ -133,7 +133,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@v4
+      - uses: actions/checkout@v5
       - name: Integration test - ${{ matrix.app-path }}
         run: |
           cd demo
@@ -144,7 +144,7 @@ jobs:
     runs-on: ubuntu-latest
     needs: [ rust-tests, python-tests ]
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - uses: actions/download-artifact@v4
         with:
           pattern: cov-report-*
diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml
index 7f91a55..dcc7424 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@v4
+      - uses: actions/checkout@v5
 
       - name: Check license header
         uses: apache/skywalking-eyes/[email protected]
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 43ef867..8956c9a 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -31,7 +31,7 @@ jobs:
   check-pr:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
 
       - name: Setup Node
         uses: actions/setup-node@v4
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ffad4b5..5fdf1a8 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@v4
+      - uses: actions/checkout@v5
       - 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@v4
+      - uses: actions/checkout@v5
 
       - run: |
            rustup toolchain add --profile=minimal stable
@@ -70,7 +70,7 @@ jobs:
         target: [ x86_64-apple-darwin, aarch64-apple-darwin ]
     runs-on: macos-latest
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - uses: actions/setup-python@v5
         with:
           python-version: '3.13'
@@ -90,7 +90,7 @@ jobs:
     needs: validate-release-tag
     runs-on: windows-latest
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - uses: actions/setup-python@v5
         with:
           python-version: '3.13'
@@ -110,7 +110,7 @@ jobs:
     needs: validate-release-tag
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - uses: actions/setup-python@v5
         with:
           python-version: '3.13'

Reply via email to