updating go to 22 and fix vulnerabilities #81
Workflow file for this run
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 build | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
- '[0-9]+.[0-9]+.[0-9]+-dev[0-9]+' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build-and-push: | |
name: Build and push image | |
runs-on: ubuntu-latest | |
env: | |
IMG_BASE: ${{ github.repository }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
if: ${{ github.ref_type == 'tag' }} | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to Quay.io | |
uses: docker/login-action@v2 | |
if: ${{ github.ref_type == 'tag' }} | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_TOKEN }} | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
if: ${{ github.ref_type == 'tag' }} | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ap-south-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
if: ${{ github.ref_type == 'tag' }} | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Set image tag env | |
# GITHUB_HEAD_REF will be set in case of PR and contains the branch name. | |
# GITHUB_REF_NAME contains the git tag. | |
run: | | |
if [[ $GITHUB_HEAD_REF != '' ]]; then | |
echo "TAG=$GITHUB_HEAD_REF" >> "$GITHUB_ENV" | |
else | |
echo "TAG=$GITHUB_REF_NAME" >> "$GITHUB_ENV" | |
fi | |
- name: Build and push image | |
env: | |
REF_TYPE: ${{ github.ref_type }} | |
AWS_ECR: "568976754000.dkr.ecr.ap-south-1.amazonaws.com" | |
run: ./scripts/build.sh | |
- name: Run Snyk image security scan | |
uses: snyk/actions/docker@master | |
continue-on-error: true | |
id: docker-image-scan | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
image: ${{ env.IMG_BASE }}:${{ env.TAG }} | |
args: --file=Dockerfile --severity-threshold=high --fail-on=all # fail on vulnerabilities with fix available | |
- name: Upload result to GitHub Code Scanning | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: snyk.sarif | |
- name: Check docker image scan status | |
if: ${{ steps.docker-image-scan.outcome == 'failure' }} | |
run: exit 1 |