Integrating the MurphySec code security detection tool into the CI/CD process can detect security vulnerabilities in real time for each code update and quickly repair these security vulnerabilities.
MURPHYSEC_TOKEN: MurphySec official website token
Go to MurphySec platform - Access Token, click the copy button after the Token, then the access token is copied to the clipboard.
name: "MurphySec code scan"on:
push:
branches:
- mainjobs:
build:
runs-on: ubuntu-lateststeps:
- name: MurphySec code scanuses: murphysecurity/actions@v1with:
MURPHYSEC_TOKEN: ${{ secrets.MURPHYSEC_TOKEN }}