LASB-2748: Resolve critical vulnerabilities reported by Snyk #14
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
# This workflow will build and deploy the current branch to dev. | |
name: Build image and deploy to DEV | |
permissions: | |
id-token: write | |
contents: read | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-and-push-image: | |
uses: ./.github/workflows/build-and-push-docker.yml | |
with: | |
ecr-repository: ${{ vars.ECR_REPOSITORY }} | |
docker-tag: ${{ github.sha }} | |
aws-region: ${{ vars.ECR_REGION }} | |
secrets: | |
ecr-role: ${{ secrets.ECR_ROLE_TO_ASSUME}} | |
deploy-application-to-dev: | |
needs: build-and-push-image | |
uses: ./.github/workflows/deploy-to-cloud-platform.yml | |
with: | |
env-name: development | |
helm-values-file: values_dev.yaml | |
ecr-repository: ${{ vars.ECR_REPOSITORY }} | |
docker-tag: ${{ github.sha }} | |
ecr-base-uri: 754256621582.dkr.ecr.eu-west-2.amazonaws.com | |
secrets: | |
kube-cluster: ${{ secrets.KUBE_CLUSTER }} | |
kube-namespace: ${{ secrets.KUBE_NAMESPACE }} | |
kube-cert: ${{ secrets.KUBE_CERT }} | |
kube-token: ${{ secrets.KUBE_TOKEN }} | |