Skip to content

chore(deps): update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [security] (v1.6) #918

chore(deps): update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [security] (v1.6)

chore(deps): update module go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp to v1.43.0 [security] (v1.6) #918

Workflow file for this run

name: Lint protobuf API
on:
push:
branches:
- main
- v*
paths:
- api/**
- docs/content/en/docs/reference/grpc-api.md
- .github/workflows/lint-proto.yaml
pull_request:
paths:
- api/**
- docs/content/en/docs/reference/grpc-api.md
- .github/workflows/lint-proto.yaml
jobs:
lint-proto:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
- name: Lint protobuf
run: |
make protoc-gen-go-tetragon
# TODO: enable linting once we have a chance to fix the underlying issues
# make -C api lint EXTRA_BUF_FLAGS="--error-format=github-actions"
if ${{ github.event_name == 'push' }}; then
make -C api check-breaking EXTRA_BUF_FLAGS="--error-format=github-actions" BUF_BREAKING_AGAINST_BRANCH="origin/${{ github.ref_name }}"
else
make -C api check-breaking EXTRA_BUF_FLAGS="--error-format=github-actions" BUF_BREAKING_AGAINST_BRANCH="origin/${{ github.base_ref }}"
fi
make -C api format EXTRA_BUF_FLAGS="--exit-code --error-format=github-actions"
check-proto-generated:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
# renovate: datasource=golang-version depName=go
go-version: "1.25.8"
- name: Go version
run: go version
- name: Validate that generated files are up to date.
run: |
set -ex
# Don't run 'make protogen' here, as it duplicates linting and vendoring checks.
make protoc-gen-go-tetragon
make -C api vendor proto
test -z "$(git status --porcelain)"
if [ $? != 0 ]; then
git status
git diff
echo "Protobuf API generated files are outdated."
echo "Please run 'make protogen' and submit your changes."; exit 1
fi