kafka authentication configurable via KAFKA_SASL_MECHANISM env - supp… #123
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: Vulnerability Scan | |
on: | |
push: | |
paths: | |
- '.github/workflows/05_trivy_scan.yml' | |
- 'resources/iot-c/**' | |
# Sequence of patterns matched against refs/heads | |
branches: | |
- master # Push events on master branch | |
- 'release*' # Push events to branches matching refs/heads/release_01 | |
jobs: | |
scan: | |
name: Docker image Vulnerability Scan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull docker image | |
run: docker pull dgs19/iot-collector:latest | |
- name: Vulnerability scan with trivy | |
uses: homoluctus/gitrivy@v2 | |
with: | |
issue: false | |
image: dgs19/iot-collector:latest | |