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
10 changes: 5 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
source .venv/bin/activate
make cicd-test
- name: Upload test results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-results-style-cicd-${{ matrix.python-version }}
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
python --version
make fast-test
- name: Upload test results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-results-windows
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
source .venv/bin/activate
make ${{ matrix.engine }}-test
- name: Upload test results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-results-docker-${{ matrix.engine }}
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
./.github/scripts/manage-test-db.sh "${{ matrix.engine }}"
"$TEST_DB_NAME" down
- name: Upload test results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-results-cloud-${{ matrix.engine }}
Expand Down Expand Up @@ -445,7 +445,7 @@ jobs:
run: |
source ../../.venv/bin/activate
pnpm run test:e2e
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: playwright-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Build UI
run: pnpm --prefix web/client run build
- name: Upload UI build artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: ui-dist
path: web/client/dist/
Expand Down
Loading