diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8330c8..a8b25cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: services: postgres: - image: postgres:13 + image: postgres:16 env: POSTGRES_USER: 'postgres' POSTGRES_HOST_AUTH_METHOD: 'trust' @@ -30,35 +30,13 @@ jobs: strategy: fail-fast: false matrix: - include: - - php: '8.2' - moodle-branch: 'master' - database: 'pgsql' - - php: '8.2' - moodle-branch: 'master' - database: 'mariadb' - - php: '8.1' - moodle-branch: 'MOODLE_403_STABLE' - database: 'mariadb' - - php: '8.1' - moodle-branch: 'MOODLE_403_STABLE' - database: 'pgsql' - - php: '8.0' - moodle-branch: 'MOODLE_403_STABLE' - database: 'mariadb' - - php: '8.0' - moodle-branch: 'MOODLE_403_STABLE' - database: 'pgsql' - - php: '8.0' - moodle-branch: 'MOODLE_402_STABLE' - database: 'mariadb' - - php: '8.0' - moodle-branch: 'MOODLE_402_STABLE' - database: 'pgsql' + php: ['8.1', '8.2', '8.3'] + moodle-branch: ['master'] + database: [pgsql, mariadb] steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: plugin diff --git a/version.php b/version.php index 8e6aad4..202c8d3 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ defined('MOODLE_INTERNAL') || die; $plugin->version = 2024011601; -$plugin->requires = 2023042400; +$plugin->requires = 2023100900; $plugin->component = 'block_massaction'; -$plugin->maturity = MATURITY_STABLE; -$plugin->release = 'v7.2.1'; +$plugin->maturity = MATURITY_ALPHA; +$plugin->release = 'v7.3.1';