From eccf305af8efa7f062887cc8e2f416369b1c249a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 02:51:23 +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 +++--- .github/workflows/release-pypi.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-cloud.yml b/.github/workflows/ci-cloud.yml index c236f93..893e292 100644 --- a/.github/workflows/ci-cloud.yml +++ b/.github/workflows/ci-cloud.yml @@ -49,7 +49,7 @@ jobs: TORCH_URL: "https://download.pytorch.org/whl/cpu/torch_stable.html" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 2647a5a..f72b259 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -34,7 +34,7 @@ jobs: TORCH_URL: "https://download.pytorch.org/whl/cpu/torch_stable.html" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: 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..273f44a 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@v6 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.7.4 if: ${{ github.event_name == 'push' }} with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index 9cc06cd..c2a96b5 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: "3.10"