From 74e150fc1690f042724378196869bd9b4bae67c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 18:03:09 +0000 Subject: [PATCH] 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), [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package) and [actions/setup-python](https://github.com/actions/setup-python). 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 `hynek/build-and-inspect-python-package` from 2 to 2.18.0 - [Release notes](https://github.com/hynek/build-and-inspect-python-package/releases) - [Changelog](https://github.com/hynek/build-and-inspect-python-package/blob/main/CHANGELOG.md) - [Commits](https://github.com/hynek/build-and-inspect-python-package/compare/v2...v2.18.0) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/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: hynek/build-and-inspect-python-package dependency-version: 2.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/publish.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 016f535a..dc49fa3d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -35,11 +35,11 @@ jobs: runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v6" + - uses: "actions/checkout@v7" with: fetch-depth: 0 - - uses: "hynek/build-and-inspect-python-package@v2" + - uses: "hynek/build-and-inspect-python-package@v2.18.0" ####################################################################### # Build Docker @@ -49,7 +49,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Check out repository" - uses: "actions/checkout@v6" + uses: "actions/checkout@v7" - name: "Build container image" run: | @@ -125,7 +125,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Checkout" - uses: "actions/checkout@v6" + uses: "actions/checkout@v7" - name: "Release" uses: "softprops/action-gh-release@v3" with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a510ea57..5a6cf92e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,11 +27,11 @@ jobs: runs-on: ["ubuntu-latest", "macos-latest", "windows-latest"] steps: - - uses: "actions/checkout@v6" + - uses: "actions/checkout@v7" with: fetch-depth: 0 - - uses: "actions/setup-python@v6" + - uses: "actions/setup-python@v7" with: python-version: "${{ matrix.python-version }}" allow-prereleases: true