Skip to content

Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.19.0 to 1.26.0 #2102

Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.19.0 to 1.26.0

Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.19.0 to 1.26.0 #2102

Workflow file for this run

name: Code Analysis
on:
pull_request:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/code.analysis.yml"
env:
GO_VERSION: "1.21"
jobs:
analysis:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Revive Action
uses: morphy2k/[email protected]
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)
- name: misspell
uses: sobolevn/[email protected]