Skip to content

build(deps): bump github.com/osrg/gobgp/v3 from 3.24.0 to 3.25.0 #9106

build(deps): bump github.com/osrg/gobgp/v3 from 3.24.0 to 3.25.0

build(deps): bump github.com/osrg/gobgp/v3 from 3.24.0 to 3.25.0 #9106

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
env:
GO_VERSION: ''
jobs:
golangci:
name: lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION || '' }}
go-version-file: go.mod
check-latest: true
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: latest
# Optional: working directory, useful for monorepos
# working-directory: somedir
# Optional: golangci-lint command line arguments.
args: --timeout 20m --verbose
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true