From 09228c62d69b0b34a39b0354bf32d8b6639b4364 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 28 Jun 2022 18:30:55 +0200 Subject: [PATCH] GH Actions/Securitycheck: update the security checker download The security checker binary has had a new release with improved handling for when a package has multiple security issues. Refs: * https://github.com/fabpot/local-php-security-checker/releases * https://github.com/fabpot/local-php-security-checker/pull/52 --- .github/workflows/securitycheck.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/securitycheck.yml b/.github/workflows/securitycheck.yml index da889ee2..b464dce6 100644 --- a/.github/workflows/securitycheck.yml +++ b/.github/workflows/securitycheck.yml @@ -39,10 +39,10 @@ jobs: - name: Download security checker # yamllint disable-line rule:line-length - run: wget -P . https://github.com/fabpot/local-php-security-checker/releases/download/v2.0.3/local-php-security-checker_2.0.3_linux_amd64 + run: wget -P . https://github.com/fabpot/local-php-security-checker/releases/download/v2.0.4/local-php-security-checker_2.0.4_linux_amd64 - name: Make security checker executable - run: chmod +x ./local-php-security-checker_2.0.3_linux_amd64 + run: chmod +x ./local-php-security-checker_2.0.4_linux_amd64 - name: Check against insecure dependencies - run: ./local-php-security-checker_2.0.3_linux_amd64 --path=composer.lock + run: ./local-php-security-checker_2.0.4_linux_amd64 --path=composer.lock