diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index 5f1dcc1..08ec1b3 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch the source code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: token: ${{ secrets.GITHUB_TOKEN }} - name: Run the updater script @@ -33,7 +33,7 @@ jobs: - name: Create Pull Request id: cpr if: ${{ env.PROCEED == 'true' }} - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v4 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: Update to version ${{ env.VERSION }} diff --git a/README.md b/README.md index 3c07556..57594d1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ It shall NOT be edited by hand. # Concrete5 for YunoHost -[![Integration level](https://dash.yunohost.org/integration/concrete5.svg)](https://dash.yunohost.org/appci/app/concrete5) ![Working status](https://ci-apps.yunohost.org/ci/badges/concrete5.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/concrete5.maintain.svg) +[![Integration level](https://dash.yunohost.org/integration/concrete5.svg)](https://dash.yunohost.org/appci/app/concrete5) ![Working status](https://ci-apps.yunohost.org/ci/badges/concrete5.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/concrete5.maintain.svg) + [![Install Concrete5 with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=concrete5) *[Lire ce readme en français.](./README_fr.md)* @@ -26,8 +27,7 @@ Features : * **and more**... -**Shipped version:** 9.1.1~ynh1 - +**Shipped version:** 9.1.1~ynh2 ## Disclaimers / important information * LDAP and HTTP auth are not supported diff --git a/README_fr.md b/README_fr.md index 759460b..1d9ecd8 100644 --- a/README_fr.md +++ b/README_fr.md @@ -5,15 +5,16 @@ It shall NOT be edited by hand. # Concrete5 pour YunoHost -[![Niveau d'intégration](https://dash.yunohost.org/integration/concrete5.svg)](https://dash.yunohost.org/appci/app/concrete5) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/concrete5.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/concrete5.maintain.svg) +[![Niveau d’intégration](https://dash.yunohost.org/integration/concrete5.svg)](https://dash.yunohost.org/appci/app/concrete5) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/concrete5.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/concrete5.maintain.svg) + [![Installer Concrete5 avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=concrete5) *[Read this readme in english.](./README.md)* -> *Ce package vous permet d'installer Concrete5 rapidement et simplement sur un serveur YunoHost. -Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.* +> *Ce package vous permet d’installer Concrete5 rapidement et simplement sur un serveur YunoHost. +Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l’installer et en profiter.* -## Vue d'ensemble +## Vue d’ensemble Concrete5 is a modern CMS. Features : @@ -26,17 +27,16 @@ Features : * **and more**... -**Version incluse :** 9.1.1~ynh1 - +**Version incluse :** 9.1.1~ynh2 ## Avertissements / informations importantes * LDAP and HTTP auth are not supported ## Documentations et ressources -* Site officiel de l'app : -* Documentation officielle de l'admin : -* Dépôt de code officiel de l'app : +* Site officiel de l’app : +* Documentation officielle de l’admin : +* Dépôt de code officiel de l’app : * Documentation YunoHost pour cette app : * Signaler un bug : @@ -52,4 +52,4 @@ ou sudo yunohost app upgrade concrete5 -u https://github.com/YunoHost-Apps/concrete5_ynh/tree/testing --debug ``` -**Plus d'infos sur le packaging d'applications :** +**Plus d’infos sur le packaging d’applications :** \ No newline at end of file diff --git a/manifest.json b/manifest.json index 631072e..13e4eb8 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Open Source Content Management System for Teams", "fr": "Système de gestion de contenu Open Source pour les équipes" }, - "version": "9.1.1~ynh1", + "version": "9.1.1~ynh2", "url": "www.concrete5.org", "upstream": { "license": "MIT", diff --git a/scripts/_common.sh b/scripts/_common.sh index 107f7bc..5b6b83a 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -6,10 +6,12 @@ # PHP APP SPECIFIC #================================================= -php_dependencies="php$YNH_DEFAULT_PHP_VERSION-pdo php$YNH_DEFAULT_PHP_VERSION-mysql php$YNH_DEFAULT_PHP_VERSION-dom php$YNH_DEFAULT_PHP_VERSION-simplexml php$YNH_DEFAULT_PHP_VERSION-iconv php$YNH_DEFAULT_PHP_VERSION-gd php$YNH_DEFAULT_PHP_VERSION-fileinfo php$YNH_DEFAULT_PHP_VERSION-mbstring php$YNH_DEFAULT_PHP_VERSION-curl php$YNH_DEFAULT_PHP_VERSION-zip" +YNH_PHP_VERSION="7.4" + +php_dependencies="php$YNH_PHP_VERSION-pdo php$YNH_PHP_VERSION-mysql php$YNH_PHP_VERSION-dom php$YNH_PHP_VERSION-simplexml php$YNH_PHP_VERSION-iconv php$YNH_PHP_VERSION-gd php$YNH_PHP_VERSION-fileinfo php$YNH_PHP_VERSION-mbstring php$YNH_PHP_VERSION-curl php$YNH_PHP_VERSION-zip" # dependencies used by the app (must be on a single line) -pkg_dependencies="curl $php_dependencies" +pkg_dependencies="mariadb-server curl $php_dependencies" #================================================= # PERSONAL HELPERS