Skip to content

Update cicd.yml - removed build fail option #41

Update cicd.yml - removed build fail option

Update cicd.yml - removed build fail option #41

Workflow file for this run

name: cicd-workflow with slack integration
on:
push:
branches: [ "master" ]
jobs:
job1:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Docker image
run: |
docker build -t my-docker-repo .
- name: Run Trivy Scan
uses: aquasecurity/trivy-action@master
with:
image-ref: 'my-docker-repo:latest'
format: 'table'
severity: 'CRITICAL,HIGH'