From 95cfa02295eda1e39c867fd5569064d628d5062e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:13:46 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 4 updates Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `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) Updates `pypa/cibuildwheel` from 3.4.1 to 4.1.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.4.1...v4.1.0) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-wheels.yml | 6 +++--- .github/workflows/cmake-build.yml | 2 +- .github/workflows/labeler.yml | 2 +- .github/workflows/test_windows.yml | 8 ++++---- .github/workflows/tests.yml | 8 ++++---- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index cb931fc..d48fb01 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -18,12 +18,12 @@ jobs: os: [ubuntu-latest, macos-14, macos-15-intel] # need to fix windows.. leave off for now steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # make sure we get the version info - name: Build wheels - uses: pypa/cibuildwheel@v3.4.1 + uses: pypa/cibuildwheel@v4.1.0 with: extras: "uv" @@ -36,7 +36,7 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # make sure we get the version info diff --git a/.github/workflows/cmake-build.yml b/.github/workflows/cmake-build.yml index e8c0bde..d56d9e0 100644 --- a/.github/workflows/cmake-build.yml +++ b/.github/workflows/cmake-build.yml @@ -14,7 +14,7 @@ jobs: with: packages: zlib1g-dev libjpeg-dev libhdf5-dev - name: Checkout on Ubuntu - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # fetch all history for git describe to work - name: Set up Python diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index e82b04c..7daf4e0 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run Labeler uses: crazy-max/ghaction-github-labeler@v6 diff --git a/.github/workflows/test_windows.yml b/.github/workflows/test_windows.yml index 36673ad..c5629c1 100644 --- a/.github/workflows/test_windows.yml +++ b/.github/workflows/test_windows.yml @@ -39,7 +39,7 @@ jobs: # ssh-private-key: ${{ secrets.DIPMAS_DEPLOY_KEY }} - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install uv uses: astral-sh/setup-uv@v7 @@ -82,7 +82,7 @@ jobs: print(f"result={result}", file=io) - name: Restore pre-commit cache - uses: actions/cache@v5 + uses: actions/cache@v6 if: matrix.session == 'pre-commit' with: path: ~/.cache/pre-commit @@ -115,7 +115,7 @@ jobs: needs: tests steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install uv uses: astral-sh/setup-uv@v7 @@ -141,6 +141,6 @@ jobs: uv run nox --session=coverage -- xml - name: Upload coverage report - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3f398db..e5b641a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,7 +40,7 @@ jobs: # ssh-private-key: ${{ secrets.DIPMAS_DEPLOY_KEY }} - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install uv uses: astral-sh/setup-uv@v7 @@ -83,7 +83,7 @@ jobs: print(f"result={result}", file=io) - name: Restore pre-commit cache - uses: actions/cache@v5 + uses: actions/cache@v6 if: matrix.session == 'pre-commit' with: path: ~/.cache/pre-commit @@ -116,7 +116,7 @@ jobs: needs: tests steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install uv uses: astral-sh/setup-uv@v7 @@ -142,6 +142,6 @@ jobs: uv run nox --session=coverage -- xml - name: Upload coverage report - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }}