diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c116769..1743d12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: [push, pull_request] jobs: ci: uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main + secrets: + moodle_org_token: ${{ secrets.MOODLE_ORG_TOKEN }} with: - min_php: 7.4 disable_phpdoc: true diff --git a/README.md b/README.md index a1e86d7..16a1f46 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,8 @@ Branches | Moodle version | Branch | | ----------------- | ----------------- | -| Moodle 3.4 to 3.10 | MOODLE_34_STABLE | -| Moodle 3.11 | MOODLE_311_STABLE | -| Moodle 4.0 and higher | MOODLE_400_STABLE | +| Moodle 4.0 - 4.2 | MOODLE_400_STABLE | +| Moodle 4.3 and higher | MOODLE_403_STABLE | Installation ------------- diff --git a/version.php b/version.php index 4c089a6..02a33d3 100644 --- a/version.php +++ b/version.php @@ -30,9 +30,9 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2023101900; -$plugin->requires = 2022031500; // Requires 4.0 -$plugin->release = '2022101900'; +$plugin->version = 2024030100; +$plugin->release = 2024030100; +$plugin->requires = 2023100900; // Requires 4.3 $plugin->component = 'mod_facetoface'; $plugin->maturity = MATURITY_STABLE; -$plugin->supported = [400, 401]; +$plugin->supported = [403, 403];