Skip to content

Commit

Permalink
mod_collabora: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Grabs committed Jan 11, 2024
1 parent ec30026 commit 881cdd9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,30 +42,26 @@ jobs:
database: ['mariadb', 'pgsql']
moodlebranch: ['MOODLE_401_STABLE', 'MOODLE_403_STABLE']
include:
- node: 16.20
- php: '8.2'
moodlebranch: 'MOODLE_403_STABLE'
database: 'pgsql'

steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
path: plugin

- name: Install node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: pgsql, mysqli, zip, gd, xmlrpc, soap
ini-values: max_input_vars=5000
coverage: none

- name: Initialise moodle-plugin-ci
run: |
composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^3
composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^4
# Add dirs to $PATH
echo $(cd ci/bin; pwd) >> $GITHUB_PATH
echo $(cd ci/vendor/bin; pwd) >> $GITHUB_PATH
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Changes
### v4.3.1
* 2024-01-07 - Adding postmessage support which brings features like version management or switching the user interface
* 2024-01-07 - Compatibility to Moodle 4.3
* 2024-01-11 - Update github actions

### v4.3

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
defined('MOODLE_INTERNAL') || die;

$plugin->version = 2024010700;
$plugin->release = 'v4.3.1 (2024-01-07)';
$plugin->release = 'v4.3.1 (2024-01-11)';
$plugin->requires = 2022111800; // Moodle 4.1.
$plugin->component = 'mod_collabora';
$plugin->maturity = MATURITY_STABLE;
$plugin->maturity = MATURITY_BETA;

0 comments on commit 881cdd9

Please sign in to comment.