Skip to content

build(deps): Bump google.golang.org/protobuf from 1.35.2 to 1.36.1 #56

build(deps): Bump google.golang.org/protobuf from 1.35.2 to 1.36.1

build(deps): Bump google.golang.org/protobuf from 1.35.2 to 1.36.1 #56

Workflow file for this run

name: Go Test
on:
pull_request:
paths:
- .github/workflows/go-test.yml
- internal/**
- cmd/**
- docs/**
- generated/**
- go.mod
- go.sum
- main.go
jobs:
linting:
name: Go lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --timeout=30m
security:
name: Go Security
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: -exclude=G115 ./...
test:
name: Go test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: stable
- name: Install
run: go mod download -x
- name: Test
run: go test -v ./...