From 6392ac154f74a7d5f28e0e34ccf5da8165fce056 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 22:42:01 +0000 Subject: [PATCH] chore(deps): bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `6` | | [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) | `4.1.0` | `4.1.1` | | [docker/login-action](https://github.com/docker/login-action) | `4.0.0` | `4.1.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `7.0.0` | `7.1.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | Updates `codecov/codecov-action` from 5 to 6 - [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/v5...v6) Updates `sigstore/cosign-installer` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](https://github.com/sigstore/cosign-installer/compare/v4.1.0...v4.1.1) Updates `docker/login-action` from 4.0.0 to 4.1.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4.0.0...v4.1.0) Updates `docker/build-push-action` from 7.0.0 to 7.1.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7.0.0...v7.1.0) Updates `softprops/action-gh-release` from 2 to 3 - [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...v3) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: sigstore/cosign-installer dependency-version: 4.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: docker/login-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/build-push-action dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-docs.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/docker-ci-publish.yml | 6 +++--- .github/workflows/docker-docs-publish.yml | 6 +++--- .github/workflows/docker-publish.yml | 6 +++--- .github/workflows/publish.yml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index 798f4fcbfe..8603be084a 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -48,7 +48,7 @@ jobs: echo '' >> coverage.xml if: matrix.python-version == 3.12 - name: Upload mock coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} # Allow coverage upload failure diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c30d1b58b3..6bab958c03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: git config --system --add safe.directory $(pwd) tox - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/docker-ci-publish.yml b/.github/workflows/docker-ci-publish.yml index f862368026..cd6695a5be 100644 --- a/.github/workflows/docker-ci-publish.yml +++ b/.github/workflows/docker-ci-publish.yml @@ -35,12 +35,12 @@ jobs: uses: actions/checkout@v6 - name: Install cosign if: github.event_name != 'pull_request' - uses: sigstore/cosign-installer@v4.1.0 + uses: sigstore/cosign-installer@v4.1.1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4.0.0 - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' - uses: docker/login-action@v4.0.0 + uses: docker/login-action@v4.1.0 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -52,7 +52,7 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v7.0.0 + uses: docker/build-push-action@v7.1.0 with: context: . file: Dockerfile-ci diff --git a/.github/workflows/docker-docs-publish.yml b/.github/workflows/docker-docs-publish.yml index 42008e9980..8a8cd059d5 100644 --- a/.github/workflows/docker-docs-publish.yml +++ b/.github/workflows/docker-docs-publish.yml @@ -35,12 +35,12 @@ jobs: uses: actions/checkout@v6 - name: Install cosign if: github.event_name != 'pull_request' - uses: sigstore/cosign-installer@v4.1.0 + uses: sigstore/cosign-installer@v4.1.1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4.0.0 - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' - uses: docker/login-action@v4.0.0 + uses: docker/login-action@v4.1.0 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -52,7 +52,7 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v7.0.0 + uses: docker/build-push-action@v7.1.0 with: context: . file: Dockerfile-docs diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 7c1ebbdb09..20bba23937 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -35,12 +35,12 @@ jobs: uses: actions/checkout@v6 - name: Install cosign if: github.event_name != 'pull_request' - uses: sigstore/cosign-installer@v4.1.0 + uses: sigstore/cosign-installer@v4.1.1 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4.0.0 - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' - uses: docker/login-action@v4.0.0 + uses: docker/login-action@v4.1.0 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -52,7 +52,7 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v7.0.0 + uses: docker/build-push-action@v7.1.0 with: context: . file: Dockerfile diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e06444680b..a1e46d6281 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - name: Make release on GitHub - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 if: startsWith(github.ref, 'refs/tags/') with: files: |