diff --git a/.github/workflows/fix-cs.yml b/.github/workflows/fix-cs.yml index e925cc3..79e9e9e 100644 --- a/.github/workflows/fix-cs.yml +++ b/.github/workflows/fix-cs.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 persist-credentials: false diff --git a/.github/workflows/gen-docs.yml b/.github/workflows/gen-docs.yml index 77c456f..d770221 100644 --- a/.github/workflows/gen-docs.yml +++ b/.github/workflows/gen-docs.yml @@ -17,13 +17,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 persist-credentials: false - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.composer/cache/files key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 918df01..6d56e52 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -35,7 +35,7 @@ jobs: name: TESTS PHP ${{ matrix.php }} LARAVEL ${{ matrix.laravel }} TESTBENCH ${{ matrix.testbench }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 persist-credentials: false @@ -49,7 +49,7 @@ jobs: coverage: pcov - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.composer/cache/files key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} @@ -72,7 +72,7 @@ jobs: run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover - name: Save code coverage report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage path: coverage.clover @@ -87,7 +87,7 @@ jobs: name: Coverage P${{ matrix.php }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -95,7 +95,7 @@ jobs: php-version: ${{ matrix.php }} - name: Retrieve code coverage report - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: coverage diff --git a/phpunit.xml.dist.bak b/phpunit.xml.dist.bak deleted file mode 100644 index 339a962..0000000 --- a/phpunit.xml.dist.bak +++ /dev/null @@ -1,23 +0,0 @@ - - - - - src/ - - - - - tests - - -