Skip to content

build(deps): bump MongoDB.Driver from 2.25.0 to 2.26.0 #1045

build(deps): bump MongoDB.Driver from 2.25.0 to 2.26.0

build(deps): bump MongoDB.Driver from 2.25.0 to 2.26.0 #1045

Workflow file for this run

name: Trivy scan
on:
push:
branches: [ master, dev ]
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true # 'recursive' 'true' or 'false'
- name: Build an image from Dockerfile
run: |
DOCKER_BUILDKIT=1 docker build -t docker.io/chaosengine/dotnetplayground:${{ github.sha }} -f Dockerfile.alpine .
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: 'docker.io/chaosengine/dotnetplayground:${{ github.sha }}'
format: 'template'
template: '@/contrib/sarif.tpl'
output: 'trivy-results.sarif'
severity: 'CRITICAL,HIGH'
- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'