Skip to content

Add SRSessionPolicy type that unmarshalls correctly #638

Add SRSessionPolicy type that unmarshalls correctly

Add SRSessionPolicy type that unmarshalls correctly #638

Workflow file for this run

name: VulnCheck
on:
pull_request:
branches:
- master
- main
- v3
push:
branches:
- master
- main
v3

Check failure on line 13 in .github/workflows/vulncheck.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/vulncheck.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
jobs:
vulncheck:
name: Analysis
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.23.x ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Get govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
shell: bash
- name: Run govulncheck
run: govulncheck ./...
shell: bash