From 8b35ced01dc50a47d0bb1bf86417675e95ab6de8 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Tue, 3 Oct 2023 19:09:37 +0200 Subject: [PATCH] Add experimental VirusTotal scan This step should automatically upload Gradle builds to VirusTotal and check for any false positives (like that one from McAfee we had a couple years ago). ...or it might just crash. We'll see. --- .github/workflows/gradle.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 04f788b1..bad3f569 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -33,3 +33,9 @@ jobs: uses: gradle/gradle-build-action@v2 - name: Execute Gradle build run: ./gradlew build + - name: VirusTotal scan + uses: crazy-max/ghaction-virustotal@v4 + with: + vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }} + files: | + build/libs/.+jar$