Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ jobs:
run: php artisan pest:dusk
- name: Upload Screenshots
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: screenshots
path: tests/Browser/screenshots
- name: Upload Console Logs
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: console
path: tests/Browser/console
4 changes: 2 additions & 2 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v6
if: steps.git-diff.outputs.diff && !matrix.experimental
with:
name: code-coverage
Expand All @@ -110,7 +110,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Fetch code coverage artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: code-coverage
- name: Upload coverage to Codecov
Expand Down