Skip to content

drive-info: Add root mount state to disk state #488

drive-info: Add root mount state to disk state

drive-info: Add root mount state to disk state #488

Workflow file for this run

name: VulnCheck
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
jobs:
vulncheck:
name: Analysis
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.22.x ]
check-latest: true

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

View workflow run for this annotation

GitHub Actions / VulnCheck

Invalid workflow file

The workflow is not valid. .github/workflows/vulncheck.yml (Line: 18, Col: 23): Unexpected value 'true'
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- uses: actions/setup-go@v3
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