diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-01-31 17:06:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-31 17:06:57 +0100 |
commit | 95ebc5839b386cf699eb6d20cbfcfb0cfe118a4e (patch) | |
tree | a5abbbbf750e22e8abf52600e78dcc03dcf83c47 /.github | |
parent | ebd46c24d7b222a42b1b23beb67d006914983700 (diff) | |
parent | fc628fcdfc3a76483ef35cd1d33e23540dc2429f (diff) | |
download | nextcloud-server-95ebc5839b386cf699eb6d20cbfcfb0cfe118a4e.tar.gz nextcloud-server-95ebc5839b386cf699eb6d20cbfcfb0cfe118a4e.zip |
Merge pull request #43170 from nextcloud/fix/mysql-ci
fix(CI): MySQL unit tests, use LTS for code coverage and drop EOL
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/phpunit-mysql.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml index 66a1184437a..a04e7ba827d 100644 --- a/.github/workflows/phpunit-mysql.yml +++ b/.github/workflows/phpunit-mysql.yml @@ -53,9 +53,9 @@ jobs: strategy: matrix: php-versions: ['8.0'] - mysql-versions: ['8.0', '8.1'] + mysql-versions: ['8.0', '8.3'] include: - - mysql-versions: '8.1' + - mysql-versions: '8.0' php-versions: '8.3' coverage: ${{ github.event_name != 'pull_request' }} |