Skip to content

deps: bump go.opentelemetry.io/otel/trace from 1.23.1 to 1.25.0 #723

deps: bump go.opentelemetry.io/otel/trace from 1.23.1 to 1.25.0

deps: bump go.opentelemetry.io/otel/trace from 1.23.1 to 1.25.0 #723

Workflow file for this run

name: golangci-lint
on:
merge_group:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
golangci:
strategy:
fail-fast: false
matrix:
go-version: ["1.21.x"]
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/setup-go@v5
if: env.IS_NOT_MERGE_GROUP
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
if: env.IS_NOT_MERGE_GROUP
with:
fetch-depth: 0
- name: golangci-lint
if: env.IS_NOT_MERGE_GROUP
uses: golangci/golangci-lint-action@v4
with:
version: v1.55
args: --concurrency 4 --verbose --config=.golangci.yaml --timeout=25m
only-new-issues: true
skip-cache: true