From 204f6ea705e91cd57225be48961939b6861ff145 Mon Sep 17 00:00:00 2001 From: Fozi Date: Fri, 15 May 2026 11:12:59 +0200 Subject: [PATCH] Add security scan workflow for virus scanning --- .github/workflows/security-scan.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/security-scan.yml diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml new file mode 100644 index 0000000..388a67d --- /dev/null +++ b/.github/workflows/security-scan.yml @@ -0,0 +1,17 @@ +name: Security Scan + +on: + workflow_dispatch: + +jobs: + job_id: + name: "Scan Virus" + runs-on: "ubuntu-latest" + steps: + - name: "Checkout Repository" + uses: "actions/checkout@v4.0.0" + with: + fetch-depth: 0 + - name: "Scan Repository" + uses: "hugoalh/scan-virus-ghaction@v0.20.1" +