Skip to content

Bump go.opentelemetry.io/otel/sdk from 1.44.0 to 1.45.0 #1141

Bump go.opentelemetry.io/otel/sdk from 1.44.0 to 1.45.0

Bump go.opentelemetry.io/otel/sdk from 1.44.0 to 1.45.0 #1141

Workflow file for this run

name: E2E Tests
on:
pull_request:
types: [labeled, opened, synchronize, reopened]
jobs:
test-e2e:
name: Run on Ubuntu
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'ok-to-test')
steps:
- name: Clone the code
uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v7
with:
go-version-file: go.mod
- name: Install the latest version of kind
run: |
curl -Lo ./kind https://kind.sigs.k8s.io/dl/latest/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/kind
- name: Verify kind installation
run: kind version
- name: Create kind cluster
run: kind create cluster
- name: Running Test e2e
run: |
go mod tidy
make test-e2e