https://github.com/smashedr/virustotal-action
https://github.com/smashedr/virustotal-action
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/smashedr/virustotal-action
- Owner: smashedr
- Created: 2024-06-04T20:13:28.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-05T04:53:08.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T08:15:34.828Z (over 1 year ago)
- Language: JavaScript
- Size: 460 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VirusTotal Action
Upload Release Assets to VirusTotal and Optionally Update Release Notes with Links.
## Inputs
| input | required | default | description |
|-----------------|----------|---------|---------------------------|
| github_token: | Yes | - | secrets.GITHUB_TOKEN |
| vt_api_key: | Yes | - | VirusTotal API Key |
| update_release: | No | true | Set to `false` to disable |
## Simple Example
```yaml
name: "Test VirusTotal Workflow"
on:
workflow_dispatch:
release:
types: [ published ]
jobs:
test:
name: "Test"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "VirusTotal"
uses: smashedr/virustotal-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
vt_api_key: ${{ secrets.VT_API_KEY }}
update_release: true
```