From 59b81230162c455656680a614ad34611aef96f54 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 05:03:27 +0000 Subject: [PATCH] chore(deps): bump the actions group across 1 directory with 3 updates Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cibw-cc.yaml | 4 ++-- .github/workflows/conda.yml | 2 +- .github/workflows/pip.yml | 2 +- .github/workflows/wheels.yml | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cibw-cc.yaml b/.github/workflows/cibw-cc.yaml index 35e0b31..f8b1f51 100644 --- a/.github/workflows/cibw-cc.yaml +++ b/.github/workflows/cibw-cc.yaml @@ -31,7 +31,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 @@ -59,7 +59,7 @@ jobs: CIBW_PLATFORM: ${{ matrix.platform }} CIBW_ARCHS: ${{ matrix.archs || 'auto' }} - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: wheels-${{ matrix.platform }}-${{ matrix.os }} path: dist/*.whl diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index b8fcc0e..2bcc1a4 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -23,7 +23,7 @@ jobs: shell: "bash -l {0}" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Get conda uses: conda-incubator/setup-miniconda@v3.2.0 diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 23536fd..f8684c7 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -18,7 +18,7 @@ jobs: python-version: ["3.9", "3.14", "pypy-3.10"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index e2caa2d..9b24719 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -22,7 +22,7 @@ jobs: name: Build SDist runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: submodules: true @@ -32,7 +32,7 @@ jobs: - name: Check metadata run: pipx run twine check dist/* - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: cibw-sdist path: dist/*.tar.gz @@ -47,7 +47,7 @@ jobs: os: [ubuntu-latest, macos-13, macos-latest, windows-latest, ubuntu-24.04-arm, windows-11-arm] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: submodules: true @@ -59,7 +59,7 @@ jobs: run: git diff --exit-code shell: bash - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: cibw-wheels-${{ matrix.os }} path: wheelhouse/*.whl @@ -80,7 +80,7 @@ jobs: with: python-version: "3.x" - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: pattern: cibw-* merge-multiple: true