Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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
Expand All @@ -88,4 +88,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
4 changes: 2 additions & 2 deletions .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand All @@ -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: |
Expand All @@ -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
Expand Down