Skip to content

[RELEASE-1.12] GO-2024-2611: Bump google.golang.org/protobuf to v1.33.0 #362

[RELEASE-1.12] GO-2024-2611: Bump google.golang.org/protobuf to v1.33.0

[RELEASE-1.12] GO-2024-2611: Bump google.golang.org/protobuf to v1.33.0 #362

Workflow file for this run

---
name: Go Vulnerability detection
on:
push:
branches:
- '**'
tags:
- 'v*.*.*'
pull_request:
branches:
- '**'
workflow_dispatch: # Manual workflow trigger
jobs:
govulncheck:
name: detect
runs-on: ubuntu-latest
env:
GOPATH: ${{ github.workspace }}
steps:
- name: Set up Go 1.21.x
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Checkout
uses: actions/checkout@v2
with:
path: ./src/github.com/${{ github.repository }}
- name: Govulncheck scan
working-directory: ./src/github.com/${{ github.repository }}
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./... || true