Skip to content

Commit 1113003

Browse files
committed
fix: downgrade upload-artifact action to v3 in workflows
1 parent 21d5dcb commit 1113003

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/mend-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
java -jar wss-unified-agent.jar
4343
fi
4444
- name: 'Upload WhiteSource folder'
45-
uses: actions/upload-artifact@4
45+
uses: actions/upload-artifact@3
4646
with:
4747
name: Mend
4848
path: whitesource
4949
retention-days: 14
5050
- name: 'Upload Mend folder if failure'
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v3
5252
if: failure()
5353
with:
5454
name: Mend

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: npm run build:dev:ci
1818
- name: Install Playwright
1919
run: npx playwright install --with-deps
20-
- uses: actions/upload-artifact@v4
20+
- uses: actions/upload-artifact@v3
2121
if: always()
2222
with:
2323
name: playwright-report

0 commit comments

Comments
 (0)