From 2d503617cb9c92848a733475b0cce2b1dcf257fd Mon Sep 17 00:00:00 2001 From: robertSt7 <104770750+robertSt7@users.noreply.github.com> Date: Thu, 21 Jul 2022 16:57:39 +0200 Subject: [PATCH] Fix: Git workflow (#82) --- .github/workflows/static-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 885f928..e6dae18 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -22,7 +22,7 @@ jobs: include: - { php-version: "8.0", dependencies: "highest", pimcore_version: "", phpstan_args: "", experimental: false } - { php-version: "8.1", dependencies: "highest", pimcore_version: "", phpstan_args: "", experimental: false } - - { php-version: "8.1", dependencies: "highest", pimcore_version: "10.x-dev", phpstan_args: "", experimental: false } + - { php-version: "8.1", dependencies: "highest", pimcore_version: "11.x-dev", phpstan_args: "", experimental: true } steps: - name: "Checkout code" uses: "actions/checkout@v2" @@ -42,7 +42,7 @@ jobs: PIMCORE_VERSION: "${{ matrix.pimcore_version }}" run: | if [ ! -z "$PIMCORE_VERSION" ]; then - composer require --no-update pimcore/pimcore:${PIMCORE_VERSION} + composer require --no-update pimcore/pimcore:"${PIMCORE_VERSION} as 10.99.9" fi