Skip to content

Commit ab45236

Browse files
committed
fix: github action issue fix regarding decprecated package
1 parent 9d720cb commit ab45236

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dependency-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
EOF
184184
185185
- name: Upload security report
186-
uses: actions/upload-artifact@v3
186+
uses: actions/upload-artifact@v4
187187
with:
188188
name: security-report
189189
path: security-report.md

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
test -s test-output.json
9090
9191
- name: Upload build artifacts
92-
uses: actions/upload-artifact@v3
92+
uses: actions/upload-artifact@v4
9393
with:
9494
name: dist-files
9595
path: dist/

.github/workflows/performance.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
node memory-profile.js
171171
172172
- name: Upload performance report
173-
uses: actions/upload-artifact@v3
173+
uses: actions/upload-artifact@v4
174174
with:
175175
name: performance-report-${{ github.sha }}
176176
path: performance-report.json
@@ -263,7 +263,7 @@ jobs:
263263
echo "Note: Size comparison with base branch requires historical data"
264264
265265
- name: Upload bundle report
266-
uses: actions/upload-artifact@v3
266+
uses: actions/upload-artifact@v4
267267
with:
268268
name: bundle-report-${{ github.sha }}
269269
path: bundle-report.json
@@ -278,12 +278,12 @@ jobs:
278278

279279
steps:
280280
- name: Download performance reports
281-
uses: actions/download-artifact@v3
281+
uses: actions/download-artifact@v4
282282
with:
283283
name: performance-report-${{ github.sha }}
284284

285285
- name: Download bundle reports
286-
uses: actions/download-artifact@v3
286+
uses: actions/download-artifact@v4
287287
with:
288288
name: bundle-report-${{ github.sha }}
289289

0 commit comments

Comments
 (0)