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. I've reviewed the diff, changes look fine.

Refs:
* https://github.com/fabpot/local-php-security-checker/releases/tag/v2.0.5
* fabpot/local-php-security-checker@v2.0.4...v2.0.5
  • Loading branch information
jrfnl committed Oct 3, 2022
1 parent 231b4e8 commit ac7cd66
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.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

0 comments on commit ac7cd66

Please sign in to comment.