Adding auto-updater to charts repo #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Updater | |
on: | |
pull_request: | |
paths: | |
- auto-updater/** | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Build Image | |
run: docker build -t auto-updater ./auto-updater | |
- name: scan image with trivy | |
run: docker run --rm -v $(pwd):/workdir aquasec/trivy auto-updater:latest |