Skip to content

Commit

Permalink
Setup 4.4+ branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Syxton committed Apr 9, 2024
1 parent 729896c commit fb287b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 30 deletions.
32 changes: 5 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

services:
postgres:
image: postgres:13
image: postgres:16
env:
POSTGRES_USER: 'postgres'
POSTGRES_HOST_AUTH_METHOD: 'trust'
Expand All @@ -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

Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

0 comments on commit fb287b1

Please sign in to comment.