From ac7cd6696cb8fadac2f629ffa61e1d2a0a69bd63 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 3 Oct 2022 15:09:02 +0200 Subject: [PATCH] GH Actions/Securitycheck: update the security checker download The security checker binary has had a new release. I've reviewed the diff, changes look fine. Refs: * https://github.com/fabpot/local-php-security-checker/releases/tag/v2.0.5 * https://github.com/fabpot/local-php-security-checker/compare/v2.0.4...v2.0.5 --- .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 b464dce6..368997fa 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.4/local-php-security-checker_2.0.4_linux_amd64 + run: wget -P . https://github.com/fabpot/local-php-security-checker/releases/download/v2.0.5/local-php-security-checker_2.0.5_linux_amd64 - name: Make security checker executable - run: chmod +x ./local-php-security-checker_2.0.4_linux_amd64 + run: chmod +x ./local-php-security-checker_2.0.5_linux_amd64 - name: Check against insecure dependencies - run: ./local-php-security-checker_2.0.4_linux_amd64 --path=composer.lock + run: ./local-php-security-checker_2.0.5_linux_amd64 --path=composer.lock