Skip to content

Commit

Permalink
GH Actions/Securitycheck: update the security checker download
Browse files Browse the repository at this point in the history
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
* fabpot/local-php-security-checker#52
  • Loading branch information
jrfnl committed Jul 25, 2022
1 parent 04f4e8f commit 09228c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/securitycheck.yml
Expand Up @@ -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

0 comments on commit 09228c6

Please sign in to comment.