From 4dcef4a37d0e7ae35b13b8eb21dd700c10a7cbb4 Mon Sep 17 00:00:00 2001 From: Louis Charette Date: Sat, 27 Apr 2024 22:08:57 -0400 Subject: [PATCH] Update Build setting --- .github/workflows/Build.yml | 25 +++++++++++++++---------- .github/workflows/PHPStan.yml | 2 +- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 3e4d778..6643a46 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - Memory SQLite @@ -50,8 +50,9 @@ jobs: - name: Upload coverage to Codecov if: github.event_name != 'schedule' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: ./_meta/coverage.xml fail_ci_if_error: true @@ -60,7 +61,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - MySQL @@ -128,8 +129,9 @@ jobs: - name: Upload coverage to Codecov if: github.event_name != 'schedule' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: ./_meta/coverage.xml fail_ci_if_error: true @@ -138,7 +140,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - SQLite @@ -181,8 +183,9 @@ jobs: - name: Upload coverage to Codecov if: github.event_name != 'schedule' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: ./_meta/coverage.xml fail_ci_if_error: true @@ -191,7 +194,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - PostgreSQL @@ -240,8 +243,9 @@ jobs: - name: Upload coverage to Codecov if: github.event_name != 'schedule' - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: ./_meta/coverage.xml fail_ci_if_error: true @@ -250,7 +254,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.1', '8.2', '8.3'] runs-on: windows-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - Windows @@ -292,7 +296,8 @@ jobs: vendor/bin/phpunit - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} file: ./_meta/coverage.xml fail_ci_if_error: true \ No newline at end of file diff --git a/.github/workflows/PHPStan.yml b/.github/workflows/PHPStan.yml index c07c6b7..b5c40b3 100644 --- a/.github/workflows/PHPStan.yml +++ b/.github/workflows/PHPStan.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPStan - ${{ matrix.php_versions }}