mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🎨 Removed virus total
This commit is contained in:
@@ -26,11 +26,6 @@ on:
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
VIRUSTOTAL_SCAN:
|
||||
description: "Scan apks with VirusTotal"
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
CLEANUP:
|
||||
description: "Clear GitHub(Useful if Telegram upload is enabled)"
|
||||
required: false
|
||||
@@ -72,11 +67,6 @@ on:
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
VIRUSTOTAL_SCAN:
|
||||
description: "Scan apks with VirusTotal"
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
CLEANUP:
|
||||
description: "Clear GitHub(Useful if Telegram upload is enabled)"
|
||||
required: false
|
||||
@@ -147,18 +137,6 @@ jobs:
|
||||
run: |
|
||||
sleep 10
|
||||
|
||||
virustotal-scan:
|
||||
needs: [ upload-to-github ]
|
||||
uses: nikhilbadyal/ghactions/.github/workflows/virustotal-scan.yml@main
|
||||
with:
|
||||
FILES: |
|
||||
.apk$
|
||||
request_rate: 4
|
||||
if: inputs.VIRUSTOTAL_SCAN
|
||||
secrets:
|
||||
VT_API_KEY: ${{ secrets.VT_API_KEY }}
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
upload-to-telegram:
|
||||
needs: [ upload-to-github ]
|
||||
uses: nikhilbadyal/ghactions/.github/workflows/telegram-uploader.yml@main
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
name: VirusTotal Scan
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
secrets:
|
||||
VT_API_KEY:
|
||||
required: true
|
||||
GH_TOKEN:
|
||||
required: true
|
||||
|
||||
jobs:
|
||||
virustotal:
|
||||
timeout-minutes: 10
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: VirusTotal Scan
|
||||
if: ${{ env.HAVE_VT_API_KEY == 'true' }}
|
||||
uses: nikhilbadyal/ghaction-virustotal@master
|
||||
with:
|
||||
vt_api_key: ${{ secrets.VT_API_KEY }}
|
||||
update_release_body: true
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
request_rate: 4
|
||||
files: |
|
||||
.apk$
|
||||
env:
|
||||
HAVE_VT_API_KEY: ${{ secrets.VT_API_KEY != '' }}
|
||||
Reference in New Issue
Block a user