Skip to content

Commit d810c79

Browse files
authored
Merge branch 'main' into res-comp
2 parents 794e970 + 51cf2d7 commit d810c79

File tree

35 files changed

+98
-98
lines changed

35 files changed

+98
-98
lines changed

.github/workflows/benchmark.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ jobs:
1212
name: Benchmarks
1313
runs-on: self-hosted
1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: actions/setup-go@v5
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
16+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
1717
with:
1818
go-version: ${{ env.DEFAULT_GO_VERSION }}
1919
check-latest: true
2020
cache-dependency-path: "**/go.sum"
2121
- name: Run benchmarks
2222
run: make benchmark | tee output.txt
2323
- name: Download previous benchmark data
24-
uses: actions/cache/restore@v4
24+
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
2525
with:
2626
path: ./benchmarks
2727
# `github.event.before` means the commit before the push (i.e. the previous commit).
2828
# So we can fetch the exact benchmark data from the previous commit.
2929
key: ${{ runner.os }}-benchmark-${{ github.event.before }}
3030
- name: Store benchmarks result
31-
uses: benchmark-action/[email protected]
31+
uses: benchmark-action/github-action-benchmark@d48d326b4ca9ba73ca0cd0d59f108f9e02a381c7 # v1.20.4
3232
with:
3333
name: Benchmarks
3434
tool: 'go'
@@ -41,7 +41,7 @@ jobs:
4141
# Add benchmark summary to GitHub workflow run report
4242
summary-always: true
4343
- name: Save benchmark data
44-
uses: actions/cache/save@v4
44+
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
4545
# The cache will be saved even if a step fails.
4646
if: always()
4747
with:

.github/workflows/changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') && !contains(github.event.pull_request.labels.*.name, 'Skip Changelog') && !contains(github.event.pull_request.title, '[chore]')}}
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2020

2121
- name: Check for CHANGELOG changes
2222
run: |

.github/workflows/ci.yml

+16-16
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout Repo
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2222
with:
2323
fetch-depth: 0 ## Needed for "Set internal/tools/go.mod timestamp" step.
2424
- name: Install Go
25-
uses: actions/setup-go@v5
25+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
2626
with:
2727
go-version: ${{ env.DEFAULT_GO_VERSION }}
2828
check-latest: true
2929
cache-dependency-path: "**/go.sum"
3030
- name: Tools cache
31-
uses: actions/cache@v4
31+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
3232
env:
3333
cache-name: go-tools-cache
3434
with:
@@ -54,13 +54,13 @@ jobs:
5454
runs-on: ubuntu-latest
5555
steps:
5656
- name: Checkout Repo
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
5858
- name: Setup Environment
5959
run: |
6060
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
6161
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
6262
- name: Install Go
63-
uses: actions/setup-go@v5
63+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
6464
with:
6565
go-version: ${{ env.DEFAULT_GO_VERSION }}
6666
cache-dependency-path: "**/go.sum"
@@ -71,9 +71,9 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- name: Checkout Repo
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
7575
- name: Install Go
76-
uses: actions/setup-go@v5
76+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
7777
with:
7878
go-version: ${{ env.DEFAULT_GO_VERSION }}
7979
check-latest: true
@@ -85,9 +85,9 @@ jobs:
8585
runs-on: ubuntu-latest
8686
steps:
8787
- name: Checkout Repo
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
8989
- name: Install Go
90-
uses: actions/setup-go@v5
90+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
9191
with:
9292
go-version: ${{ env.DEFAULT_GO_VERSION }}
9393
check-latest: true
@@ -99,17 +99,17 @@ jobs:
9999
runs-on: ubuntu-latest
100100
steps:
101101
- name: Checkout Repo
102-
uses: actions/checkout@v4
102+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
103103
- name: Install Go
104-
uses: actions/setup-go@v5
104+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
105105
with:
106106
go-version: ${{ env.DEFAULT_GO_VERSION }}
107107
check-latest: true
108108
cache-dependency-path: "**/go.sum"
109109
- name: Run coverage tests
110110
run: make test-coverage
111111
- name: Store coverage test output
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
113113
with:
114114
name: coverage-artifacts-${{ env.DEFAULT_GO_VERSION }}
115115
path: coverage.txt
@@ -118,11 +118,11 @@ jobs:
118118
runs-on: ubuntu-latest
119119
needs: [test-coverage]
120120
steps:
121-
- uses: actions/download-artifact@v4
121+
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
122122
with:
123123
pattern: coverage-artifacts-${{ env.DEFAULT_GO_VERSION }}
124124
- name: Upload coverage report
125-
uses: codecov/[email protected]
125+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
126126
with:
127127
fail_ci_if_error: true
128128
files: ./coverage.txt
@@ -150,9 +150,9 @@ jobs:
150150
runs-on: ${{ matrix.platform.os }}
151151
steps:
152152
- name: Checkout code
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
154154
- name: Install Go
155-
uses: actions/setup-go@v5
155+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
156156
with:
157157
go-version: ${{ matrix.go-version }}
158158
check-latest: true

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2727

2828
# Initializes the CodeQL tools for scanning.
2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v3
30+
uses: github/codeql-action/init@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
3131
with:
3232
languages: go
3333

3434
- name: Autobuild
35-
uses: github/codeql-action/autobuild@v3
35+
uses: github/codeql-action/autobuild@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
3636

3737
- name: Perform CodeQL Analysis
38-
uses: github/codeql-action/analyze@v3
38+
uses: github/codeql-action/analyze@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
3939

.github/workflows/codespell.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Repo
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
- name: Codespell
1414
run: make codespell
1515
- run: make check-clean-work-tree

.github/workflows/links-fail-fast.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ jobs:
1212
permissions:
1313
contents: read
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616

1717
- name: Restore lychee cache
18-
uses: actions/cache/restore@v4
18+
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
1919
id: cache-restore
2020
with:
2121
path: .lycheecache
2222
key: cache-lychee-${{ github.sha }}
2323
restore-keys: cache-lychee-
2424

2525
- name: Link Checker
26-
uses: lycheeverse/[email protected]
26+
uses: lycheeverse/lychee-action@f613c4a64e50d792e0b31ec34bbcbba12263c6a6 # v2.3.0
2727
env:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
with:
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Save lychee cache
3434
if: always()
35-
uses: actions/cache/save@v4
35+
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
3636
with:
3737
path: .lycheecache
3838
key: ${{ steps.cache-restore.outputs.cache-primary-key }}

.github/workflows/links.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
contents: read
1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1818

1919

2020
- name: Restore lychee cache
21-
uses: actions/cache/restore@v4
21+
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
2222
id: cache-restore
2323
with:
2424
path: .lycheecache
@@ -27,22 +27,22 @@ jobs:
2727

2828
- name: Link Checker
2929
id: lychee
30-
uses: lycheeverse/[email protected]
30+
uses: lycheeverse/lychee-action@f613c4a64e50d792e0b31ec34bbcbba12263c6a6 # v2.3.0
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3333
with:
3434
args: --max-concurrency 1 --cache --max-cache-age 1d --cache-exclude-status 300..=599 .
3535

3636
- name: Save lychee cache
3737
if: always()
38-
uses: actions/cache/save@v4
38+
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
3939
with:
4040
path: .lycheecache
4141
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
4242

4343
- name: Create Issue From File
4444
if: steps.lychee.outputs.exit_code != 0
45-
uses: peter-evans/create-issue-from-file@v5
45+
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5
4646
with:
4747
title: Link Checker Report
4848
content-filepath: ./lychee/out.md

.github/workflows/markdown-fail-fast.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
md: ${{ steps.changes.outputs.md }}
1313
steps:
1414
- name: Checkout Repo
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616
with:
1717
fetch-depth: 0
1818
- name: Get changed files
@@ -27,8 +27,8 @@ jobs:
2727
if: ${{needs.changedfiles.outputs.md}}
2828
steps:
2929
- name: Checkout Repo
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3131
- name: Run linter
32-
uses: docker://avtodev/markdown-lint:v1
32+
uses: docker://avtodev/markdown-lint:v1@sha256:6aeedc2f49138ce7a1cd0adffc1b1c0321b841dc2102408967d9301c031949ee
3333
with:
3434
args: ${{needs.changedfiles.outputs.md}}

.github/workflows/markdown.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Repo
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1616

1717
- name: Run linter
1818
id: markdownlint
19-
uses: docker://avtodev/markdown-lint:v1
19+
uses: docker://avtodev/markdown-lint:v1@sha256:6aeedc2f49138ce7a1cd0adffc1b1c0321b841dc2102408967d9301c031949ee
2020
with:
2121
config: .markdownlint.yaml
2222
args: '**/*.md'
2323
output: ./markdownlint.txt
2424

2525
- name: Create Issue From File
2626
if: steps.markdownlint.outputs.exit_code != 0
27-
uses: peter-evans/create-issue-from-file@v5
27+
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5
2828
with:
2929
title: Markdown Lint Report
3030
content-filepath: ./markdownlint.txt

.github/workflows/protect-released-changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: ${{ !contains(github.event.pull_request.labels.*.name, 'Unlock Released Changelog')}}
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717

1818
- name: Protect the released changelog
1919
run: |

.github/workflows/scorecard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ jobs:
5858
# Upload the results to GitHub's code scanning dashboard (optional).
5959
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
6060
- name: "Upload to code-scanning"
61-
uses: github/codeql-action/upload-sarif@v3
61+
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
6262
with:
6363
sarif_file: results.sarif

bridge/opentracing/test/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ require (
3131
golang.org/x/sys v0.30.0 // indirect
3232
golang.org/x/text v0.22.0 // indirect
3333
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 // indirect
34-
google.golang.org/protobuf v1.36.4 // indirect
34+
google.golang.org/protobuf v1.36.5 // indirect
3535
gopkg.in/yaml.v3 v3.0.1 // indirect
3636
)
3737

bridge/opentracing/test/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 h1:
4646
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489/go.mod h1:8BS3B93F/U1juMFq9+EDk+qOT5CO1R9IzXxG3PTqiRk=
4747
google.golang.org/grpc v1.70.0 h1:pWFv03aZoHzlRKHWicjsZytKAiYCtNS0dHbXnIdq7jQ=
4848
google.golang.org/grpc v1.70.0/go.mod h1:ofIJqVKDXx/JiXrwr2IG4/zwdH9txy3IlF40RmcJSQw=
49-
google.golang.org/protobuf v1.36.4 h1:6A3ZDJHn/eNqc1i+IdefRzy/9PokBTPvcqMySR7NNIM=
50-
google.golang.org/protobuf v1.36.4/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
49+
google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM=
50+
google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
5151
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
5252
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
5353
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

dependencies.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This is a renovate-friendly source of Docker images.
2-
FROM python:3.13.1-slim-bullseye AS python
3-
FROM otel/weaver:v0.12.0 AS weaver
2+
FROM python:3.13.1-slim-bullseye@sha256:0eab754489555b1f0a6beaa0733e5bc7d39b12c58cb3f0a45613bec60555e716 AS python
3+
FROM otel/weaver:v0.12.0@sha256:0b6136dc8ba68b3ee143dc8ee63b214af740276e5bbb0e7712ad61acc9b447da AS weaver

exporters/otlp/otlplog/otlploggrpc/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
go.opentelemetry.io/proto/otlp v1.5.0
1515
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489
1616
google.golang.org/grpc v1.70.0
17-
google.golang.org/protobuf v1.36.4
17+
google.golang.org/protobuf v1.36.5
1818
)
1919

2020
require (

exporters/otlp/otlplog/otlploggrpc/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 h1:
4343
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489/go.mod h1:8BS3B93F/U1juMFq9+EDk+qOT5CO1R9IzXxG3PTqiRk=
4444
google.golang.org/grpc v1.70.0 h1:pWFv03aZoHzlRKHWicjsZytKAiYCtNS0dHbXnIdq7jQ=
4545
google.golang.org/grpc v1.70.0/go.mod h1:ofIJqVKDXx/JiXrwr2IG4/zwdH9txy3IlF40RmcJSQw=
46-
google.golang.org/protobuf v1.36.4 h1:6A3ZDJHn/eNqc1i+IdefRzy/9PokBTPvcqMySR7NNIM=
47-
google.golang.org/protobuf v1.36.4/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
46+
google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM=
47+
google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
4848
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4949
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
5050
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

exporters/otlp/otlplog/otlploghttp/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
go.opentelemetry.io/otel/sdk/log v0.10.0
1313
go.opentelemetry.io/otel/trace v1.34.0
1414
go.opentelemetry.io/proto/otlp v1.5.0
15-
google.golang.org/protobuf v1.36.4
15+
google.golang.org/protobuf v1.36.5
1616
)
1717

1818
require (

exporters/otlp/otlplog/otlploghttp/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489 h1:
4343
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489/go.mod h1:8BS3B93F/U1juMFq9+EDk+qOT5CO1R9IzXxG3PTqiRk=
4444
google.golang.org/grpc v1.70.0 h1:pWFv03aZoHzlRKHWicjsZytKAiYCtNS0dHbXnIdq7jQ=
4545
google.golang.org/grpc v1.70.0/go.mod h1:ofIJqVKDXx/JiXrwr2IG4/zwdH9txy3IlF40RmcJSQw=
46-
google.golang.org/protobuf v1.36.4 h1:6A3ZDJHn/eNqc1i+IdefRzy/9PokBTPvcqMySR7NNIM=
47-
google.golang.org/protobuf v1.36.4/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
46+
google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM=
47+
google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
4848
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4949
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
5050
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

exporters/otlp/otlpmetric/otlpmetricgrpc/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
go.opentelemetry.io/proto/otlp v1.5.0
1515
google.golang.org/genproto/googleapis/rpc v0.0.0-20250204164813-702378808489
1616
google.golang.org/grpc v1.70.0
17-
google.golang.org/protobuf v1.36.4
17+
google.golang.org/protobuf v1.36.5
1818
)
1919

2020
require (

0 commit comments

Comments
 (0)