From b08ec4c466307d928bd3deb2d01f81a4941ff42e Mon Sep 17 00:00:00 2001 From: smiley Date: Sat, 5 Mar 2022 19:52:01 +0100 Subject: [PATCH] :shower: workflow fix --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 46f461212..2dd683cf8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,7 +37,7 @@ jobs: - name: "Install PHP" uses: shivammathur/setup-php@v2 with: - php-version: "7.4" + php-version: ${{ matrix.php-version }} coverage: none tools: pecl extensions: ast, gd, imagick, json, mbstring @@ -60,7 +60,7 @@ jobs: - name: "Install PHP" uses: shivammathur/setup-php@v2 with: - php-version: "7.4" + php-version: "8.0" coverage: none tools: phpDocumentor extensions: gd, imagick, json, mbstring @@ -69,11 +69,11 @@ jobs: run: phpdoc --config=phpdoc.xml - name: "Publish Docs to gh-pages" - uses: JamesIves/github-pages-deploy-action@4.1.6 + uses: JamesIves/github-pages-deploy-action@4.2.5 with: - BRANCH: gh-pages - FOLDER: docs - CLEAN: true + branch: gh-pages + folder: docs + clean: true tests: name: "Unit Tests"