mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-02-02 19:11:25 -05:00
The clang-format action needs to check `common` instead of `shared`. The docker db update action needs to clone the repo first.
18 lines
418 B
YAML
18 lines
418 B
YAML
name: Docker image virus database update
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 1 * *'
|
|
|
|
jobs:
|
|
update-image-databases:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CLAMAV_DOCKER_USER: ${{ secrets.CLAMAV_DOCKER_USER }}
|
|
CLAMAV_DOCKER_PASSWD: ${{ secrets.CLAMAV_DOCKER_PASSWD }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Update virus database and push image
|
|
run: ./dockerfiles/update_db_image.sh
|