Cherry pick of #6879 on release-2.2 and updated the FORWARD rules for VLANs. #529
Workflow file for this run
This file contains hidden or 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: Scan Antrea Docker images for vulnerabilities before release | |
on: | |
pull_request: | |
branches: | |
- release-* | |
jobs: | |
build: | |
if: startsWith(github.event.pull_request.title, 'Release ') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
driver: docker | |
- name: Build Antrea Docker image | |
run: | | |
./hack/build-antrea-linux-all.sh --pull | |
- name: Run Trivy vulnerability scanner on the antrea-agent Docker image | |
uses: aquasecurity/[email protected] | |
with: | |
scan-type: 'image' | |
image-ref: 'antrea/antrea-agent-ubuntu:latest' | |
trivy-config: '.trivy.yml' | |
- name: Run Trivy vulnerability scanner on the antrea-controller Docker image | |
uses: aquasecurity/[email protected] | |
with: | |
scan-type: 'image' | |
image-ref: 'antrea/antrea-controller-ubuntu:latest' | |
trivy-config: '.trivy.yml' |