Skip to content

improved the config section of the middleware readme´s (#2552) #717

improved the config section of the middleware readme´s (#2552)

improved the config section of the middleware readme´s (#2552) #717

Workflow file for this run

name: Run govulncheck
on:
push:
branches:
- master
- main
paths:
- '**'
- '!docs/**'
- '!**.md'
pull_request:
paths:
- '**'
- '!docs/**'
- '!**.md'
jobs:
govulncheck-check:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Fetch Repository
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
check-latest: true
cache: false
- name: Install Govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run Govulncheck
run: govulncheck ./...