[CLOB-930] Add ctx.Done() support to shutdown, make start-up wait time configurable, and add support for domain sockets for gRPC server and gRPC web server. #18
Workflow file for this run
This file contains 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: "Dependency Review" | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "1.19" | |
check-latest: true | |
- name: "Checkout Repository" | |
uses: actions/checkout@v3 | |
- name: "Dependency Review" | |
uses: actions/dependency-review-action@v3 | |
- name: "Dependency audit" | |
run: ./scripts/dep-assert.sh | |
- name: "Go vulnerability check" | |
run: make vulncheck |