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 }}