Prevent duplicate virtual sessions in participant update events. #232
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: Go Vulnerability Checker | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '.github/workflows/govuln.yml' | |
- '**.go' | |
- 'go.*' | |
pull_request: | |
branches: [ master ] | |
paths: | |
- '.github/workflows/govuln.yml' | |
- '**.go' | |
- 'go.*' | |
schedule: | |
- cron: "0 2 * * SUN" | |
permissions: | |
contents: read | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: | |
- "1.21" | |
- "1.22" | |
- "1.23" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- run: date | |
- name: Install and run govulncheck | |
run: | | |
set -euo pipefail | |
go install golang.org/x/vuln/cmd/govulncheck@latest | |
govulncheck ./... |