Update branch_build_hugo_en_alt.yml #1679
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: VirusTotal Scan | |
on: | |
pull_request: | |
push: | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Scan files | |
uses: crazy-max/ghaction-virustotal@v4 | |
with: | |
vt_api_key: ${{ secrets.VT_API_KEY }} | |
files: | | |
*.html | |
*.ps1 | |
- name: Calculate SHA-256 Hashes | |
run: find . -type f -print0 | xargs -0 sha256sum | awk '{print $1}' |