From ea1859a4938eff8812e6ec6ee28bb42ec8f7929b Mon Sep 17 00:00:00 2001 From: Dave Liddament Date: Mon, 16 Dec 2024 18:57:07 +0000 Subject: [PATCH] REMOVE locked file from github checks --- .github/workflows/full-checks.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/full-checks.yml b/.github/workflows/full-checks.yml index 8c8f42a..ee0552c 100644 --- a/.github/workflows/full-checks.yml +++ b/.github/workflows/full-checks.yml @@ -19,7 +19,6 @@ jobs: matrix: dependencies: - "lowest" - - "locked" - "highest" php-version: - "8.0" @@ -56,10 +55,6 @@ jobs: if: ${{ matrix.dependencies == 'lowest' }} run: "composer update --prefer-lowest --no-interaction --no-progress" - - name: "Install locked dependencies" - if: ${{ matrix.dependencies == 'locked' }} - run: "composer install --no-interaction --no-progress" - - name: "Install highest dependencies" if: ${{ matrix.dependencies == 'highest' }} run: "composer update --no-interaction --no-progress"