Skip to content

[Build-deps]: Bump golang.org/x/sync from 0.19.0 to 0.20.0 #40

[Build-deps]: Bump golang.org/x/sync from 0.19.0 to 0.20.0

[Build-deps]: Bump golang.org/x/sync from 0.19.0 to 0.20.0 #40

Workflow file for this run

name: Vulnerability Check
on:
pull_request:
push:
branches:
- "*"
workflow_dispatch:
env:
GO_VERSION: "1.25.7"
jobs:
vulncheck:
runs-on: self-hosted
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run govulncheck
run: govulncheck ./...