release 1.16.9 (#3018)

* fix filter action display
* allow to set system configuration during runtime
* bump version
* use deepl pro free to translate missing keys
* replacing broken Github action
This commit is contained in:
Kevin Papst
2021-12-14 02:29:06 +01:00
committed by GitHub
parent 19cd5962aa
commit 358959522d
7 changed files with 249 additions and 29 deletions

View File

@@ -35,8 +35,18 @@ jobs:
extensions: mbstring, xml, ctype, iconv, intl, mysql, zip, gd, ldap
tools: cs2pr:1.1.0
- name: Determine composer cache directory
id: composer-cache
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: "${{ steps.composer-cache.outputs.directory }}"
key: ${{ runner.os }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
uses: ramsey/composer-install@v1
run: composer install
- name: Validate Composer
run: composer validate --strict