Skip to content

Bump gitlab.com/tozd/go/errors from 0.8.1 to 0.10.0 #146

Bump gitlab.com/tozd/go/errors from 0.8.1 to 0.10.0

Bump gitlab.com/tozd/go/errors from 0.8.1 to 0.10.0 #146

Workflow file for this run

name: "Trivy Code Scan"
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 1'
watch:
types: [started]
jobs:
Trivy-Scan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
# - name: Build an image from Dockerfile
# run: |
# docker build -t docker.io/my-organization/my-app:${{ github.sha }} .
#
# - name: Run Trivy vulnerability scanner in docker mode
# uses: aquasecurity/trivy-action@master
# with:
# image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}'
# format: 'template'
# template: '@/contrib/sarif.tpl'
# output: 'trivy-results-docker.sarif'
# severity: 'CRITICAL'
#
# - name: Upload Trivy scan results to GitHub Security tab
# uses: github/codeql-action/upload-sarif@v1
# with:
# sarif_file: 'trivy-results-docker.sarif'
- name: Run Trivy vulnerability scanner in fs mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'sarif'
output: 'trivy-results.sarif'
severity: 'CRITICAL'
- name: DEBUG Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: 'trivy-results.sarif'