From eac6394135610eb0e0ae6d292ecd520cd78ccc6f Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 10 Apr 2022 02:52:03 +0200 Subject: [PATCH] GH Actions/Securitycheck: update the security checker download The security checker binary has had a few new releases, so let's take advantage of them. Refs: * https://github.com/fabpot/local-php-security-checker/releases * https://github.com/fabpot/local-php-security-checker/blob/v2.0.0/CHANGELOG.md --- .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 7200457d..da889ee2 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/v1.2.0/local-php-security-checker_1.2.0_linux_amd64 + 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 - name: Make security checker executable - run: chmod +x ./local-php-security-checker_1.2.0_linux_amd64 + run: chmod +x ./local-php-security-checker_2.0.3_linux_amd64 - name: Check against insecure dependencies - run: ./local-php-security-checker_1.2.0_linux_amd64 --path=composer.lock + run: ./local-php-security-checker_2.0.3_linux_amd64 --path=composer.lock