diff --git a/.github/workflows/moodle-ci.yml b/.github/workflows/moodle-ci.yml index 664dc4a0..4d15fad7 100644 --- a/.github/workflows/moodle-ci.yml +++ b/.github/workflows/moodle-ci.yml @@ -49,6 +49,9 @@ jobs: - php: '8.1' moodle-branch: 'MOODLE_402_STABLE' database: pgsql + - php: '8.2' + moodle-branch: 'MOODLE_403_STABLE' + database: pgsql steps: - name: Check out repository code diff --git a/CHANGELOG.md b/CHANGELOG.md index 43c891d7..a3baa7e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 4.2.3 - 2023-10-10 ### Changed - Coding style fixes +- Included LMS 4.3 and PHP 8.2 in the GHA testing matrix ## 4.2.2 - 2023-08-22 ### Changed diff --git a/version.php b/version.php index 6f9245e2..50805db8 100644 --- a/version.php +++ b/version.php @@ -29,4 +29,4 @@ $plugin->version = 2023101000; $plugin->requires = 2022041900.00; $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [400, 402]; +$plugin->supported = [400, 403];