Skip to content

Commit

Permalink
WEBUI-1578:- Upgrade upload-artifact from v2 to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
alokhyland committed Sep 10, 2024
1 parent 7e542fe commit 32aa933
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cross-repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,22 +212,22 @@ jobs:
- name: Archive cucumber reports
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: cucumber-reports
path: |
ftest/target/cucumber-reports/
- name: Archive screenshots
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: screenshots
path: ftest/target/screenshots/

- name: Archive logs
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: logs
path: |
Expand All @@ -236,7 +236,7 @@ jobs:
- name: Archive packages
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: packages
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,21 +134,21 @@ jobs:

- name: Archive cucumber reports
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: cucumber-reports
path: ftest/target/cucumber-reports/

- name: Archive screenshots
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: screenshots
path: ftest/target/screenshots/

- name: Archive logs
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: logs
path: |
Expand All @@ -157,7 +157,7 @@ jobs:
- name: Archive packages
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: packages
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
mvn -B -nsu -ntp -f plugin/itests/marketplace install
- name: Archive packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: packages
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/veracode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Nuxeo package build
run: mvn install -DskipInstall
- name: Archive packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: packages
path: |
Expand Down

0 comments on commit 32aa933

Please sign in to comment.