Skip to content

feat(version): add version history list #820

feat(version): add version history list

feat(version): add version history list #820

Workflow file for this run

name: Run govulncheck
on:
push:
branches:
- develop
paths:
- "**"
- "!**.md"
pull_request:
paths:
- "**"
- "!**.md"
jobs:
vulncheck-check:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Fetch Repository
uses: actions/checkout@v6
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: stable
check-latest: true
cache: false
- name: Install Govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run Govulncheck
run: govulncheck ./...