Drop arm/v7 support, split vuln scan to stages #1
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: Docker Image CI | |
env: | |
GHCR: ghcr.io | |
DOCKER: docker.io | |
IMAGENAME: samba | |
on: | |
push: | |
branches: [ "master" ] | |
schedule: | |
- cron: '0 22 1 * *' | |
jobs: | |
vulerability-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Perform Scan | |
uses: ShiftLeftSecurity/scan-action@master | |
build-and-push: | |
runs-on: ubuntu-latest | |
needs: | |
- vulerability-scan | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Github container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.GHCR }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.DOCKER }} | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
${{ env.GHCR }}/vremenar/${{ env.IMAGENAME }}:latest | |
${{ env.GHCR }}/vremenar/${{ env.IMAGENAME }}:${{ steps.date.outputs.date }} | |
${{ env.DOCKER }}/vremenar/${{ env.IMAGENAME }}:latest | |
${{ env.DOCKER }}/vremenar/${{ env.IMAGENAME }}:${{ steps.date.outputs.date }} | |
image-vulnerability-scan: | |
runs-on: ubuntu-latest | |
needs: | |
- build-and-push | |
steps: | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: '${{ env.GHCR }}/vremenar/${{ env.IMAGENAME }}:latest' | |
format: 'table' | |
exit-code: '1' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH' | |