https://github.com/murphysecurity/actions
GitHub actions for analyzing SBOM information and identifying security vulnerabilities within your project. 用于在GitHub CI中自动化分析项目SBOM信息并识别项目安全漏洞
https://github.com/murphysecurity/actions
Last synced: 4 months ago
JSON representation
GitHub actions for analyzing SBOM information and identifying security vulnerabilities within your project. 用于在GitHub CI中自动化分析项目SBOM信息并识别项目安全漏洞
- Host: GitHub
- URL: https://github.com/murphysecurity/actions
- Owner: murphysecurity
- License: apache-2.0
- Created: 2023-07-10T02:30:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-02T08:25:18.000Z (over 2 years ago)
- Last Synced: 2025-02-09T10:17:23.704Z (about 1 year ago)
- Homepage:
- Size: 3.23 MB
- Stars: 15
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MurphySec code scan
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.
## Usage
### Inputs
- `MURPHYSEC_TOKEN`: MurphySec official website token
Go to [MurphySec platform - Access Token](https://www.murphysec.com/console/set/token), click the copy button after the Token, then the access token is copied to the clipboard.
## Example usage
```yaml
name: "MurphySec code scan"
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: MurphySec code scan
uses: murphysecurity/actions@v1
with:
MURPHYSEC_TOKEN: ${{ secrets.MURPHYSEC_TOKEN }}
```