mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
418 B
17 lines
418 B
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
|
|
|