Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Bump actions/upload-artifact from 3 to 4 #79

Merged
merged 6 commits into from
Dec 22, 2023
Merged
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
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ jobs:
./cc-test-reporter format-coverage -t clover -o $CODECLIMATE_REPORT $COVERAGE_FILE

- name: Upload tests reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: github.actor != 'dependabot[bot]'
with:
name: test-reports
name: test-reports-${{ matrix.php }}-${{ matrix.db }}
path: tests/reports

reports:
Expand All @@ -114,9 +114,10 @@ jobs:

steps:
- name: Download test reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: test-reports
pattern: test-reports-*
merge-multiple: true

- name: Report to CodeClimate
run: |
Expand Down
2 changes: 0 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
use Creasi\Package\ServiceProvider;
use Illuminate\Config\Repository;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Orchestra\Testbench\TestCase as Orchestra;

class TestCase extends Orchestra
{
use RefreshDatabase;
use DatabaseMigrations;

protected function getPackageProviders($app)
Expand Down