Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
rdebleu committed Mar 10, 2024
1 parent f8ad507 commit 5057179
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
strategy:
fail-fast: false
matrix:
moodle-branch: ['MOODLE_403_STABLE']
php: ['8.2']
database: ['mysqli']
moodle-branch: [main]
php: [8.2]
database: [mysqli]

steps:
- name: checkout plugin
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: this-plugin

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ jobs:
fail-fast: false
matrix:
php: ['8.1']
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE']
moodle-branch: ['MOODLE_402_STABLE', 'MOODLE_403_STABLE', 'main']
database: ['mariadb', 'pgsql']
include:
- php: '8.2'
moodle-branch: 'MOODLE_403_STABLE'
moodle-branch: 'main'
database: 'pgsql'

steps:
- name: checkout plugin
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: this-plugin

Expand Down
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

defined('MOODLE_INTERNAL') || die();

$plugin->requires = 2022112800;
$plugin->requires = 2023042400;
$plugin->component = 'report_payments';
$plugin->maturity = MATURITY_STABLE;
$plugin->supported = [401, 403];
$plugin->release = 'v4.1.1';
$plugin->version = 2023112300;
$plugin->supported = [402, 403];
$plugin->release = 'v4.2.1';
$plugin->version = 2024031000;

0 comments on commit 5057179

Please sign in to comment.