Skip to content

Commit c044ddc

Browse files
chore(deps): update github artifact actions
1 parent 71a231f commit c044ddc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
continue-on-error: true
129129
id: upload
130130
if: ${{ matrix.system == 'ubuntu-latest' }}
131-
uses: actions/upload-artifact@v4
131+
uses: actions/upload-artifact@v5
132132
with:
133133
path: |
134134
${{ github.workspace }}/components/*/dist/**
@@ -165,7 +165,7 @@ jobs:
165165

166166
- name: Upload changes
167167
if: ${{ failure() }}
168-
uses: actions/upload-artifact@v4
168+
uses: actions/upload-artifact@v5
169169
with:
170170
path: changes.diff
171171
name: changes.diff

.github/workflows/compare-results.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ jobs:
8686
echo "base-path=${BRANCH//\//_}" >> "$GITHUB_OUTPUT"
8787
8888
- name: Download build artifacts for head
89-
uses: actions/download-artifact@v5
89+
uses: actions/download-artifact@v6
9090
with:
9191
name: ubuntu-latest-node22-compiled-assets-${{ steps.derive-key.outputs.head-path }}
9292
path: ${{ github.workspace }}/${{ steps.derive-key.outputs.head-path }}
9393
merge-multiple: true
9494

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

121121
- name: Upload changes
122122
if: ${{ steps.compare.outputs.has-changed }}
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: rich-diff
126126
path: |
@@ -158,7 +158,7 @@ jobs:
158158
echo "key=ubuntu-latest-node22-compiled-assets-${BRANCH}" >> "$GITHUB_OUTPUT"
159159
160160
- name: Check if build artifacts already exist
161-
uses: actions/download-artifact@v5
161+
uses: actions/download-artifact@v6
162162
id: artifact-found
163163
continue-on-error: true
164164
with:
@@ -206,7 +206,7 @@ jobs:
206206
- name: Check for built assets
207207
continue-on-error: true
208208
id: download
209-
uses: actions/download-artifact@v5
209+
uses: actions/download-artifact@v6
210210
with:
211211
path: |
212212
${{ github.workspace }}/components/*/dist/**
@@ -223,7 +223,7 @@ jobs:
223223
if: ${{ steps.download.outcome != 'success' }}
224224
continue-on-error: true
225225
id: upload
226-
uses: actions/upload-artifact@v4
226+
uses: actions/upload-artifact@v5
227227
with:
228228
path: |
229229
${{ github.workspace }}/components/*/dist/**

0 commit comments

Comments
 (0)