Add user_id_attribute
support to AzureAD connection options in Conn…
#794
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: govulncheck | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: [main] | |
schedule: | |
- cron: "30 0 1,15 * *" | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
- name: Scan for Vulnerabilities in Code | |
uses: golang/govulncheck-action@dd0578b371c987f96d1185abb54344b44352bd58 # [email protected] | |
with: | |
go-version-file: go.mod | |
go-package: ./... | |
check-latest: true | |
repo-checkout: false |