From 69d5a965745b2ccda307280af824fcd112d4ab96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 04:43:12 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [PyO3/maturin-action](https://github.com/pyo3/maturin-action), [softprops/action-gh-release](https://github.com/softprops/action-gh-release) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). 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 `PyO3/maturin-action` from 1.50.1 to 1.51.0 - [Release notes](https://github.com/pyo3/maturin-action/releases) - [Commits](https://github.com/pyo3/maturin-action/compare/v1.50.1...v1.51.0) Updates `softprops/action-gh-release` from 2.6.1 to 3.0.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2.6.1...v3.0.1) Updates `pypa/gh-action-pypi-publish` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.13.0...v1.14.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: PyO3/maturin-action dependency-version: 1.51.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/dists.yml | 14 +++++++------- .github/workflows/tests.yml | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/dists.yml b/.github/workflows/dists.yml index c0604b0..81430e4 100644 --- a/.github/workflows/dists.yml +++ b/.github/workflows/dists.yml @@ -35,7 +35,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # keep python versions in sync with # - pyproject.toml @@ -70,7 +70,7 @@ jobs: python-version: '3.14' architecture: ${{ ( startsWith(matrix.os, 'windows') && matrix.target == 'i686' ) && 'x86' || null }} - - uses: PyO3/maturin-action@v1.50.1 + - uses: PyO3/maturin-action@v1.51.0 with: target: ${{ matrix.target }} manylinux: ${{ matrix.manylinux }} @@ -86,7 +86,7 @@ jobs: with: python-version: '3.14t' architecture: ${{ ( startsWith(matrix.os, 'windows') && matrix.target == 'i686' ) && 'x86' || null }} - - uses: PyO3/maturin-action@v1.50.1 + - uses: PyO3/maturin-action@v1.51.0 with: target: ${{ matrix.target }} manylinux: ${{ matrix.manylinux }} @@ -106,9 +106,9 @@ jobs: name: sdist runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - - uses: PyO3/maturin-action@v1.50.1 + - uses: PyO3/maturin-action@v1.51.0 with: command: sdist args: --out dist @@ -138,12 +138,12 @@ jobs: - run: ls -ltra dist/ - name: Upload release assets - uses: softprops/action-gh-release@v2.6.1 + uses: softprops/action-gh-release@v3.0.1 with: files: dist/* # trusted publisher in https://pypi.org/manage/project/blake3/settings/publishing/ - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@v1.13.0 + uses: pypa/gh-action-pypi-publish@v1.14.0 with: skip-existing: true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2aafde5..cf59a37 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,7 +34,7 @@ jobs: env: CARGO_BUILD_TARGET: ${{ matrix.platform.rust-target }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - uses: dtolnay/rust-toolchain@master with: @@ -65,7 +65,7 @@ jobs: ] fail-fast: false steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - run: uv venv --python cpython-${{ matrix.python-version }}-${{ matrix.platform.python-target }} - run: uv run tests/python_info.py @@ -90,7 +90,7 @@ jobs: name: cargo-lock runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable - run: cargo check --locked @@ -106,7 +106,7 @@ jobs: # - the c_impl tests above python-version: ["3.8", "3.14"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - name: Run mypy run: uv run --python ${{ matrix.python-version }} --with mypy mypy --strict blake3.pyi tests/test_blake3.py