diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 3859e3b..92ce5c3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -35,7 +35,7 @@ jobs: run: uv sync --locked --all-extras - name: Use volta - uses: volta-cli/action@v4 + uses: volta-cli/action@v5 - name: Set version from tag run: | @@ -61,7 +61,7 @@ jobs: uv run make clean html - name: Setup Pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 if: github.event_name == 'release' && github.event.action == 'published' - name: Upload artifact @@ -71,7 +71,7 @@ jobs: path: docs/build/html - name: Upload build artifacts for debugging - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: docs-build-artifacts @@ -88,4 +88,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index eeeb592..d54a924 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -33,7 +33,7 @@ jobs: run: git submodule update --init --recursive - name: Setup Node.js - uses: volta-cli/action@v4 + uses: volta-cli/action@v5 - name: Install dependencies run: npm ci --no-audit @@ -60,7 +60,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: functional-test-results-${{ inputs.environment }} path: | diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 8c8ab54..9dfc713 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -17,7 +17,7 @@ jobs: run: git submodule update --init --recursive - name: Setup Node.js - uses: volta-cli/action@v4 + uses: volta-cli/action@v5 - name: Install dependencies run: npm ci --no-audit @@ -38,7 +38,7 @@ jobs: run: npm run test:unit - name: Upload build artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-dist path: | @@ -51,7 +51,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: unit-test-results path: | @@ -70,7 +70,7 @@ jobs: packages: write steps: - name: Download build artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: build-dist path: ./package