diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml index 2831b120..ba046103 100644 --- a/.github/workflows/angular.yml +++ b/.github/workflows/angular.yml @@ -131,13 +131,13 @@ jobs: run: npm run ci:e2e:run --if-present timeout-minutes: 15 - name: 'BACKEND: Store failure logs' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() && steps.backend.outcome == 'failure' with: name: log-${{ matrix.sample }} path: ${{ github.workspace }}/app/**/test-results/**/*.xml - name: 'E2E: Store failure screenshots' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() && steps.e2e.outcome == 'failure' with: name: screenshots-${{ matrix.sample }} diff --git a/.github/workflows/react.yml b/.github/workflows/react.yml index f99f4923..b695c6fe 100644 --- a/.github/workflows/react.yml +++ b/.github/workflows/react.yml @@ -131,13 +131,13 @@ jobs: run: npm run ci:e2e:run --if-present timeout-minutes: 15 - name: 'BACKEND: Store failure logs' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() && steps.backend.outcome == 'failure' with: name: log-${{ matrix.sample }} path: ${{ github.workspace }}/app/**/test-results/**/*.xml - name: 'E2E: Store failure screenshots' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() && steps.e2e.outcome == 'failure' with: name: screenshots-${{ matrix.sample }} diff --git a/.github/workflows/vue.yml b/.github/workflows/vue.yml index f49ce0e5..29c6ba2d 100644 --- a/.github/workflows/vue.yml +++ b/.github/workflows/vue.yml @@ -131,13 +131,13 @@ jobs: run: npm run ci:e2e:run --if-present timeout-minutes: 15 - name: 'BACKEND: Store failure logs' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() && steps.backend.outcome == 'failure' with: name: log-${{ matrix.sample }} path: ${{ github.workspace }}/app/**/test-results/**/*.xml - name: 'E2E: Store failure screenshots' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() && steps.e2e.outcome == 'failure' with: name: screenshots-${{ matrix.sample }}