Skip to content

fix(httpserver): bump minimal go version #5

fix(httpserver): bump minimal go version

fix(httpserver): bump minimal go version #5

name: grype httpserver
on:
push:
branches: [ main ]
paths: [ httpserver/** ]
jobs:
scan-source:
name: Scan source code
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
steps:
- uses: actions/checkout@v3
- uses: anchore/scan-action@v3
id: scan
with:
path: httpserver
fail-build: true
acs-report-enable: true
severity-cutoff: medium
- name: upload Anchore scan SARIF report
if: success() || failure()
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.scan.outputs.sarif }}