diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index bac78d676..8ebb85046 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -87,13 +87,13 @@ jobs: run: php artisan pest:dusk - name: Upload Screenshots if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: screenshots path: tests/Browser/screenshots - name: Upload Console Logs if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: console path: tests/Browser/console diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 769f4c516..fb9758a5b 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -95,7 +95,7 @@ jobs: php artisan storage:link php artisan test --coverage-clover coverage.xml - name: Save code coverage to artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: steps.git-diff.outputs.diff && !matrix.experimental with: name: code-coverage @@ -110,7 +110,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Fetch code coverage artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: code-coverage - name: Upload coverage to Codecov