From 7b7b0bf53899b2a9b0f86af66831f8d5c3d7d9a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 08:36:31 +0000 Subject: [PATCH] build(deps): bump the gha-updates group across 1 directory with 3 updates Bumps the gha-updates group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action). 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/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) Updates `JamesIves/github-pages-deploy-action` from 4.7.3 to 4.7.4 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/v4.7.3...v4.7.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-updates - dependency-name: JamesIves/github-pages-deploy-action dependency-version: 4.7.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-cloud.yml | 2 +- .github/workflows/ci-testing.yml | 2 +- .github/workflows/cleanup-caches.yml | 2 +- .github/workflows/docs-build.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-cloud.yml b/.github/workflows/ci-cloud.yml index 0afdae5..3c0a5e6 100644 --- a/.github/workflows/ci-cloud.yml +++ b/.github/workflows/ci-cloud.yml @@ -51,7 +51,7 @@ jobs: UV_TORCH_BACKEND: "cpu" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and set Python ${{ matrix.python-version }} uses: astral-sh/setup-uv@v7 diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 37b4f19..81fda25 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -40,7 +40,7 @@ jobs: UV_TORCH_BACKEND: "cpu" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and set Python ${{ matrix.python-version }} uses: astral-sh/setup-uv@v7 diff --git a/.github/workflows/cleanup-caches.yml b/.github/workflows/cleanup-caches.yml index 2336633..ce1b90c 100644 --- a/.github/workflows/cleanup-caches.yml +++ b/.github/workflows/cleanup-caches.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cleanup run: | diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index c43654b..3aa3373 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -15,15 +15,15 @@ jobs: needs: build-docs runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 # deploy needs git credentials + - uses: actions/checkout@v6 # deploy needs git credentials - name: Download prepared docs - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v7 with: name: docs-html-${{ github.sha }} path: docs/build/html - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4.7.3 + uses: JamesIves/github-pages-deploy-action@v4.8.0 if: ${{ github.event_name == 'push' }} with: token: ${{ secrets.GITHUB_TOKEN }}