Merge pull request 'chore(ci): pin artifact actions to @v3 for Gitea act_runner compatibility' (#18) from chore/pin-artifact-actions-v3 into staging
Some checks failed
Block internal-flavored paths / Block forbidden paths (push) Successful in 5s
Check merge_group trigger on required workflows / Required workflows have merge_group trigger (push) Successful in 7s
CI / Detect changes (push) Successful in 7s
E2E API Smoke Test / detect-changes (push) Successful in 8s
E2E Staging Canvas (Playwright) / detect-changes (push) Successful in 8s
Lint curl status-code capture / Scan workflows for curl status-capture pollution (push) Successful in 6s
Handlers Postgres Integration / detect-changes (push) Successful in 8s
Secret scan / Scan diff for credential-shaped strings (push) Successful in 7s
Runtime PR-Built Compatibility / detect-changes (push) Successful in 9s
CI / Shellcheck (E2E scripts) (push) Successful in 9s
E2E API Smoke Test / E2E API Smoke Test (push) Successful in 4s
CI / Python Lint & Test (push) Failing after 15s
Handlers Postgres Integration / Handlers Postgres Integration (push) Successful in 6s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (push) Failing after 10s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (push) Successful in 4s
CodeQL / Analyze (${{ matrix.language }}) (go) (push) Failing after 1m11s
CodeQL / Analyze (${{ matrix.language }}) (python) (push) Failing after 1m26s
CodeQL / Analyze (${{ matrix.language }}) (javascript-typescript) (push) Failing after 1m40s
CI / Canvas (Next.js) (push) Successful in 1m58s
CI / Canvas Deploy Reminder (push) Has been skipped
CI / Platform (Go) (push) Successful in 2m11s

This commit is contained in:
claude-ceo-assistant 2026-05-07 08:23:20 +00:00
commit bed9644c10
3 changed files with 4 additions and 4 deletions

View File

@ -235,7 +235,7 @@ jobs:
run: npx vitest run --coverage run: npx vitest run --coverage
- name: Upload coverage summary as artifact - name: Upload coverage summary as artifact
if: needs.changes.outputs.canvas == 'true' && always() if: needs.changes.outputs.canvas == 'true' && always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 uses: actions/upload-artifact@v3 # pinned to v3 for Gitea act_runner v0.6 compatibility (internal#46)
with: with:
name: canvas-coverage-${{ github.run_id }} name: canvas-coverage-${{ github.run_id }}
path: canvas/coverage/ path: canvas/coverage/

View File

@ -121,7 +121,7 @@ jobs:
# 14-day retention — longer than default 3, short enough not # 14-day retention — longer than default 3, short enough not
# to bloat quota. # to bloat quota.
if: always() if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 uses: actions/upload-artifact@v3 # pinned to v3 for Gitea act_runner v0.6 compatibility (internal#46)
with: with:
name: codeql-sarif-${{ matrix.language }} name: codeql-sarif-${{ matrix.language }}
path: sarif-results/${{ matrix.language }}/ path: sarif-results/${{ matrix.language }}/

View File

@ -139,7 +139,7 @@ jobs:
- name: Upload Playwright report on failure - name: Upload Playwright report on failure
if: failure() && needs.detect-changes.outputs.canvas == 'true' if: failure() && needs.detect-changes.outputs.canvas == 'true'
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 uses: actions/upload-artifact@v3 # pinned to v3 for Gitea act_runner v0.6 compatibility (internal#46)
with: with:
name: playwright-report-staging name: playwright-report-staging
path: canvas/playwright-report-staging/ path: canvas/playwright-report-staging/
@ -147,7 +147,7 @@ jobs:
- name: Upload screenshots on failure - name: Upload screenshots on failure
if: failure() && needs.detect-changes.outputs.canvas == 'true' if: failure() && needs.detect-changes.outputs.canvas == 'true'
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 uses: actions/upload-artifact@v3 # pinned to v3 for Gitea act_runner v0.6 compatibility (internal#46)
with: with:
name: playwright-screenshots name: playwright-screenshots
path: canvas/test-results/ path: canvas/test-results/