From 30b3040eaf3cf71556de4624ab81d7d46a9f8f51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 23:55:59 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 7 updates Bumps the github-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [docker/login-action](https://github.com/docker/login-action) | `3.6.0` | `3.7.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.11.1` | `3.12.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6.18.0` | `6.19.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `7` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.5.1` | `5.5.2` | Updates `actions/cache` from 4 to 5 - [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/v4...v5) Updates `docker/login-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/5e57cd118135c172c3672efd75eb46360885c0ef...c94ce9fb468520275223c153574b00df6fe4bcc9) Updates `docker/setup-buildx-action` from 3.11.1 to 3.12.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/e468171a9de216ec08956ac3ada2f0791b6bd435...8d2750c68a42422c14e847fe6c8ac0403b4cbd6f) Updates `docker/build-push-action` from 6.18.0 to 6.19.2 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/263435318d21b8e681c14492fe198d362a7d2c83...10e90e3645eae34f1e60eeb005ba3a3d33f178e8) 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) Updates `codecov/codecov-action` from 5.5.1 to 5.5.2 - [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/5a1091511ad55cbe89839c7260b706298ca349f7...671740ac38dd9b0130fbe1cec585b89eea48d3de) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: 3.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: 6.19.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-dockerfile.yml | 16 ++++++++-------- .github/workflows/build-package.yml | 4 ++-- .github/workflows/cache-test-datasets.yml | 4 ++-- .github/workflows/ci.yml | 10 +++++----- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build-dockerfile.yml b/.github/workflows/build-dockerfile.yml index 31da1474..d1625781 100644 --- a/.github/workflows/build-dockerfile.yml +++ b/.github/workflows/build-dockerfile.yml @@ -80,7 +80,7 @@ jobs: run: pip install -r requirements.txt - name: Restore test dataset - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: ${{ needs.cache-test-datasets.outputs.cache-key }} path: test/data/ @@ -132,20 +132,20 @@ jobs: - name: Login to DockerHub if: github.event_name != 'pull_request' - uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0 + uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0 + uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # 3.11.1 + uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # 3.12.0 with: platforms: linux/amd64,linux/arm64 @@ -157,7 +157,7 @@ jobs: - name: Build Docker image (x86) if: github.event_name != 'pull_request' - uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 + uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2 with: context: ${{ github.workspace }} load: true @@ -175,7 +175,7 @@ jobs: - name: Build Docker image (x86; PR) if: github.event_name == 'pull_request' - uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 + uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2 with: context: ${{ github.workspace }} load: true @@ -197,7 +197,7 @@ jobs: - name: Build Docker image (arm64) if: github.event_name != 'pull_request' - uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 + uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2 with: context: ${{ github.workspace }} push: false @@ -214,7 +214,7 @@ jobs: - name: Push image to registries if: github.event_name != 'pull_request' - uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 + uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2 with: context: ${{ github.workspace }} push: true diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml index 71e602eb..ae40e853 100644 --- a/.github/workflows/build-package.yml +++ b/.github/workflows/build-package.yml @@ -68,7 +68,7 @@ jobs: run: python -m build . -v --outdir out/dist/ - name: Upload distribution - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: dist path: out/ @@ -88,7 +88,7 @@ jobs: steps: - name: Download artifacts - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: dist diff --git a/.github/workflows/cache-test-datasets.yml b/.github/workflows/cache-test-datasets.yml index 3c0fcc2d..c4d4f93a 100644 --- a/.github/workflows/cache-test-datasets.yml +++ b/.github/workflows/cache-test-datasets.yml @@ -69,7 +69,7 @@ jobs: - name: Restore cache id: cache-dset - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: ${{ steps.generate-cache-key.outputs.key }} path: test/data/ @@ -93,7 +93,7 @@ jobs: run: md5sum -c checksums.md5 - name: Save cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 if: steps.cache-dset.outputs.cache-hit != 'true' with: key: ${{ steps.generate-cache-key.outputs.key }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73420d2c..4f8e0429 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,7 +114,7 @@ jobs: stripepy --version - name: Restore test dataset - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: ${{ needs.cache-test-datasets.outputs.cache-key }} path: test/data/ @@ -132,7 +132,7 @@ jobs: - name: Upload unit test coverage report to Codecov if: (! matrix.minimal_install) - uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: flags: "tests | unit | python-${{ matrix.python_version }}" disable_search: true @@ -143,7 +143,7 @@ jobs: - name: Upload unit test coverage report to Codecov (core) if: matrix.minimal_install - uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: flags: "tests | unit | python-${{ matrix.python_version }} | core" disable_search: true @@ -164,7 +164,7 @@ jobs: - name: Upload end2end test coverage report to Codecov if: (! matrix.minimal_install) - uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: flags: "tests | integration | python-${{ matrix.python_version }}" disable_search: true @@ -175,7 +175,7 @@ jobs: - name: Upload end2end test coverage report to Codecov (core) if: matrix.minimal_install - uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 + uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: flags: "tests | integration | python-${{ matrix.python_version }} | core" disable_search: true