Skip to content

chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.36.0 to 1.43.0 #26811

chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.36.0 to 1.43.0

chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc from 1.36.0 to 1.43.0 #26811

Workflow file for this run

name: Simulation
# Simulation workflow runs simulation test
# This workflow is run on pushes to master & every Pull Requests where a .go, .mod, .sum have been changed
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🐿 Setup Golang
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Get git diff
uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**.wasm
**/**!(test).go
tests/**/**.go
go.mod
go.sum
Makefile
- name: Run full application simulation
run: |
make test-sim-app
if: env.GIT_DIFF
- name: Run simulation determinism check
run: |
make test-sim-determinism
if: env.GIT_DIFF