fix: integrations/argocd/Dockerfile to reduce vulnerabilities #4822
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: build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: 0 23 * * * | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
GOPATH: /home/runner/work/terrascan | |
GOBIN: /home/runner/work/terrascan/bin | |
GO_VERSION: 1.19 | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_TEST }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY_TEST }} | |
AWS_REGION: ${{ secrets.AWS_REGION_TEST }} | |
AZURE_AUTH_TEST_SECRET: ${{ secrets.AZURE_AUTH_TEST_KEY }} | |
GOOGLE_APPLICATION_CREDENTIALS_TEST_SECRET: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_TEST_KEY }} | |
steps: | |
- name: Checkout Terrascan | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Install golint | |
run: go install golang.org/x/lint/golint@latest | |
- name: Build Terrascan docker image | |
run: make docker-build | |
- name: Go validations | |
run: make validate | |
- name: Build Terrascan | |
run: make build | |
- name: Run unit tests | |
run: make unit-tests | |
- name: install kind | |
run: make install-kind | |
- name: Run e2e tests | |
run: make e2e-tests | |
- name: Run e2e vulnerability tests | |
if: ${{ (github.event_name == 'push'|| github.event_name == 'schedule') && github.actor != 'dependabot[bot]' }} | |
run: make e2e-vulnerability-tests | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
# push image to Docker Hub | |
push: | |
# Ensure "validate" job passes before pushing image. | |
needs: validate | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout Terrascan | |
uses: actions/checkout@v3 | |
- uses: docker/setup-qemu-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push Terrascan latest docker image | |
run: make docker-build-push-latest | |
env: | |
MULTIPLATFORM: true |