From d180aeb111790b8e1a0ae8e2379888f206108531 Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Tue, 2 Feb 2021 10:31:41 +0100 Subject: [PATCH] [TASK] Remove discontinued PHP security checker --- .github/workflows/ci.yaml | 29 ----------------------------- composer.json | 1 - 2 files changed, 30 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0475019..dbda2ae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -194,32 +194,3 @@ jobs: - name: Code Quality (by PHPStan) run: ./vendor/bin/phpstan analyse - - security-test: - runs-on: ubuntu-latest - needs: [check-dependencies] - steps: - - uses: actions/checkout@v2 - - - name: Install PHP - uses: shivammathur/setup-php@v2 - with: - php-version: 7.4 - - - name: Get Composer Cache Directory - id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" - - - uses: actions/cache@v1 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} - restore-keys: | - ${{ runner.os }}-composer- - - - name: Install dependencies - run: composer install --prefer-dist --no-progress --no-suggest - - - name: PHP Security test - run: ./vendor/bin/security-checker security:check --no-ansi diff --git a/composer.json b/composer.json index dbc8349..a7f188b 100644 --- a/composer.json +++ b/composer.json @@ -40,7 +40,6 @@ "phpstan/extension-installer": "^1.0", "maglnet/composer-require-checker": "^2.1", "saschaegerer/phpstan-typo3": "^0.13.1", - "sensiolabs/security-checker": "^6.0", "typo3/testing-framework": "^6.4", "phpspec/prophecy-phpunit": "^2", "jangregor/phpstan-prophecy": "^0.8.0"