Security Checker #1302
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security Checker | |
on: | |
schedule: | |
# 毎日 00:00 (UTC) に処理を実行する | |
- cron: '0 0 * * *' | |
jobs: | |
check: | |
name: Security check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Checking Security Vulnerabilities | |
uses: symfonycorp/security-checker-action@v5 |