diff --git a/.github/workflows/ci-cloud.yml b/.github/workflows/ci-cloud.yml index b42b3c1..2eabdbd 100644 --- a/.github/workflows/ci-cloud.yml +++ b/.github/workflows/ci-cloud.yml @@ -32,7 +32,7 @@ jobs: LIGHTNING_CLOUD_URL: https://staging.gridai.dev steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and set Python ${{ matrix.python-version }} uses: astral-sh/setup-uv@v7 @@ -67,7 +67,7 @@ jobs: coverage xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 5b65f41..b251eb1 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -65,7 +65,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 @@ -107,7 +107,7 @@ jobs: coverage xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 continue-on-error: true with: token: ${{ secrets.CODECOV_TOKEN }} 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 e03ce25..0ba1c3a 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -8,7 +8,7 @@ jobs: build-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and set Python 3.10 uses: astral-sh/setup-uv@v7 @@ -26,7 +26,7 @@ jobs: run: python -m sphinx -b html -W --keep-going docs/source docs/build/html - name: Upload prepared docs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: docs-html-${{ github.sha }} path: docs/build/html @@ -36,15 +36,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@v8 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 }}