Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
continue-on-error: true
id: upload
if: ${{ matrix.system == 'ubuntu-latest' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: |
${{ github.workspace }}/components/*/dist/**
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Upload changes
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: changes.diff
name: changes.diff
12 changes: 6 additions & 6 deletions .github/workflows/compare-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,14 @@ jobs:
echo "base-path=${BRANCH//\//_}" >> "$GITHUB_OUTPUT"

- name: Download build artifacts for head
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ubuntu-latest-node22-compiled-assets-${{ steps.derive-key.outputs.head-path }}
path: ${{ github.workspace }}/${{ steps.derive-key.outputs.head-path }}
merge-multiple: true

- name: Download build artifacts for base
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ubuntu-latest-node22-compiled-assets-${{ steps.derive-key.outputs.base-path }}
path: ${{ github.workspace }}/${{ steps.derive-key.outputs.base-path }}
Expand All @@ -120,7 +120,7 @@ jobs:

- name: Upload changes
if: ${{ steps.compare.outputs.has-changed }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rich-diff
path: |
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
echo "key=ubuntu-latest-node22-compiled-assets-${BRANCH}" >> "$GITHUB_OUTPUT"

- name: Check if build artifacts already exist
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
id: artifact-found
continue-on-error: true
with:
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Check for built assets
continue-on-error: true
id: download
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: |
${{ github.workspace }}/components/*/dist/**
Expand All @@ -223,7 +223,7 @@ jobs:
if: ${{ steps.download.outcome != 'success' }}
continue-on-error: true
id: upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: |
${{ github.workspace }}/components/*/dist/**
Expand Down
Loading