Skip to content

deps: bump github.com/prometheus/common from 0.65.0 to 0.67.4 #7430

deps: bump github.com/prometheus/common from 0.65.0 to 0.67.4

deps: bump github.com/prometheus/common from 0.65.0 to 0.67.4 #7430

name: golangci-lint
on:
merge_group:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
golangci:
strategy:
fail-fast: false
matrix:
goos: ["linux", "windows"]
goarch: ["amd64", "arm64"]
name: Lint
runs-on: ubuntu-latest
env:
IS_NOT_MERGE_GROUP: ${{ github.event_name != 'merge_group' }}
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
if: env.IS_NOT_MERGE_GROUP
with:
fetch-depth: 0
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
if: env.IS_NOT_MERGE_GROUP
with:
go-version-file: go.mod
- name: golangci-lint
if: env.IS_NOT_MERGE_GROUP
uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --concurrency 4 --verbose --config=.golangci.yaml --timeout=25m
only-new-issues: true
skip-cache: true