From 0eaa14cbf1d53b8a0a70d4c3addddcc68806bb3c Mon Sep 17 00:00:00 2001 From: Louis Charette Date: Wed, 13 Dec 2023 20:06:10 -0500 Subject: [PATCH 1/2] Add PHP 8.3 to test suite Ref https://github.com/userfrosting/UserFrosting/issues/1234 --- .github/workflows/Build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 9c8434d7..658395d4 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.0', '8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - Memory SQLite @@ -64,7 +64,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.0', '8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - MySQL @@ -137,7 +137,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.0', '8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - SQLite @@ -193,7 +193,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.0', '8.1', '8.2', '8.3'] runs-on: ubuntu-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - PostgreSQL @@ -255,7 +255,7 @@ jobs: strategy: fail-fast: false matrix: - php_versions: ['8.0', '8.1', '8.2'] + php_versions: ['8.0', '8.1', '8.2', '8.3'] runs-on: windows-latest name: PHPUnit - PHP ${{ matrix.php_versions }} - Windows From 72258d3e6dbb38d806a27b8526b79c7f88972a9a Mon Sep 17 00:00:00 2001 From: Louis Charette Date: Wed, 31 Jan 2024 21:55:50 -0800 Subject: [PATCH 2/2] Update Codecov action version --- .github/workflows/Build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 658395d4..5d344270 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -53,7 +53,7 @@ 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 @@ -126,7 +126,7 @@ 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 @@ -182,7 +182,7 @@ 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 @@ -244,7 +244,7 @@ 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 @@ -291,7 +291,7 @@ jobs: vendor/bin/phpunit --exclude-group windows-skip - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./_meta/coverage.xml