xds/extauthz: implement server-side ext_authz HTTP filter (gRFC A92). #472
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: govulncheck | |
| on: | |
| push: | |
| pull_request: | |
| schedule: # daily at 10:22 UTC | |
| - cron: '22 10 * * *' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| govulncheck: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| work-dir: ['.', | |
| './gcp/observability', | |
| './cmd/protoc-gen-go-grpc', | |
| './security/advancedtls', | |
| './stats/opencensus'] | |
| steps: | |
| - name: Run govulncheck | |
| uses: golang/govulncheck-action@v1 | |
| with: | |
| check-latest: true | |
| work-dir: ${{ matrix.work-dir }} |