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 329d993 build(deps): bump astral-sh/setup-uv from 6 to 7 (#465)
329d993 is described below
commit 329d993ad1b5a929e63222dee5f90464c67b9bd6
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sat Oct 18 01:15:32 2025 -0500
build(deps): bump astral-sh/setup-uv from 6 to 7 (#465)
* build(deps): bump astral-sh/setup-uv from 6 to 7
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 6 to
7.
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](https://github.com/astral-sh/setup-uv/compare/v6...v7)
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
* Add condition to skip coverage publish for dependabot
* Update condition to exclude dependabot for coverage
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shiyan Xu <[email protected]>
---
.github/workflows/ci.yml | 3 ++-
.github/workflows/code.yml | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7141e8a..4575446 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -96,7 +96,7 @@ jobs:
- uses: actions/checkout@v5
- name: install uv and set the python version
- uses: astral-sh/setup-uv@v6
+ uses: astral-sh/setup-uv@v7
with:
version: "0.7.19"
python-version: ${{ matrix.python-version }}
@@ -143,6 +143,7 @@ jobs:
name: Publish coverage reports to codecov.io
runs-on: ubuntu-latest
needs: [ rust-tests, python-tests ]
+ if: github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v5
diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml
index 3f2f548..4c232f2 100644
--- a/.github/workflows/code.yml
+++ b/.github/workflows/code.yml
@@ -36,7 +36,7 @@ jobs:
uses: apache/skywalking-eyes/[email protected]
- name: Install uv
- uses: astral-sh/setup-uv@v6
+ uses: astral-sh/setup-uv@v7
with:
version: "0.7.19"