Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add VirusTotal scan for built binaries #72

Merged
merged 2 commits into from
Dec 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,44 @@ jobs:
path: dynops_x64.so
retention-days: 1

virustotal:
name: VirusTotal Scan
runs-on: ubuntu-latest
timeout-minutes: 10
needs:
- build-extension-windows-x64
- build-extension-linux-x64

steps:
- name: Download Windows x64
uses: actions/download-artifact@v4
with:
name: extension-x64-windows
path: .

- name: Download Linux x64
uses: actions/download-artifact@v4
with:
name: extension-x64-linux
path: .

- name: VirusTotal Scan
uses: crazy-max/ghaction-virustotal@v4
with:
vt_api_key: ${{ secrets.VIRUSTOTAL_APIKEY }}
request_rate: 4
files: |
./dynops_x64.dll
./dynops_x64.so

build:
name: Build addon
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- build-extension-windows-x64
- build-extension-linux-x64

steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
Loading