Skip to content

Commit 1c151b4

Browse files
authored
Merge branch 'main' into custom_receiverhelper
2 parents 143b04c + 42a3ae0 commit 1c151b4

File tree

494 files changed

+8382
-2791
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

494 files changed

+8382
-2791
lines changed

.chloggen/add-metric-name-variable.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.chloggen/bytes-based-batching-profiles.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.chloggen/mdatagen-logs.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.chloggen/rm-dep-exporterbatcher.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.chloggen/rm-dep-exporterqueue.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/actionlint.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
self-hosted-runner:
2+
labels: []
3+
4+
config-variables: null
5+
6+
paths:
7+
.github/workflows/**/*.{yml,yaml}:
8+
ignore:
9+
# SC1070: Suppressing because scripts intentionally contain valid but unusual characters,
10+
# Escape characters like `\o` used purposefully, and tested for clarity
11+
- '.*shellcheck reported issue in this script: SC1070:.+'
12+
13+
# SC1133: ShellCheck suggests optimizing conditional expressions, but these scripts
14+
# operate correctly and readability is prioritized in real-world use. This ensures familiarity for contributors.
15+
- '.*shellcheck reported issue in this script: SC1133:.+'
16+
17+
# SC2086: Ignored because word splitting is intentional in commands like `git diff`,
18+
# where simple, predictable paths are passed as arguments. No unintended globbing occurs in this context.
19+
- '.*shellcheck reported issue in this script: SC2086:.+'
20+
21+
# SC2046: Suppressed because word splitting is desired and necessary in certain scenarios,
22+
# PR_HEAD is set by GitHub Actions and paths are fixed/controlled.
23+
- '.*shellcheck reported issue in this script: SC2046:.+'
24+
25+
# SC2059: Format strings in `printf` are deliberately designed and controlled for specific outputs.
26+
# ShellCheck’s safeguard warning is appreciated but not critical in these cases.
27+
- '.*shellcheck reported issue in this script: SC2059:.+'
28+
29+
# SC2236: Both `! -z` and `-n` achieve the same result, and while `-n` is idiomatic. (Just a style suggestion)
30+
# suppressing this warning allows scripts to remain consistent with existing standards.
31+
- '.*shellcheck reported issue in this script: SC2236:.+'
32+
33+
# SC1001: Escaped characters (like `\o`) are deliberate in certain scripts for expected functionality.
34+
# ShellCheck’s flagging of these characters as potential issues isn’t applicable to this use case.
35+
- '.*shellcheck reported issue in this script: SC1001:.+'
36+
37+
# SC2129: Individual redirections are chosen for simplicity and clarity in the workflows.
38+
# combining them is technically efficient, the current approach ensures more readable scripts.
39+
- '.*shellcheck reported issue in this script: SC2129:.+'
40+
41+
# Runner warnings ignored because scripts are validated against specific configurations
42+
# and tested on GitHub Actions, ensuring compatibility. These warnings do not affect functionality.
43+
- '.*the runner of ".+" action is too old to run on GitHub Actions.+'
44+

.github/workflows/api-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Go
3434
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
3535
with:
36-
go-version: ~1.23.7
36+
go-version: ~1.23.8
3737

3838
# Generate apidiff states of Main
3939
- name: Generate-States

.github/workflows/build-and-test-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3232
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
3333
with:
34-
go-version: ~1.23.7
34+
go-version: ~1.23.8
3535
cache: false
3636
- name: Cache Go
3737
id: go-cache

.github/workflows/build-and-test-windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Go
2828
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2929
with:
30-
go-version: ~1.23.7
30+
go-version: ~1.23.8
3131
cache: false
3232
- name: Cache Go
3333
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
@@ -56,7 +56,7 @@ jobs:
5656
- name: Setup Go
5757
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5858
with:
59-
go-version: ~1.23.7
59+
go-version: ~1.23.8
6060
cache: false
6161
- name: Cache Go
6262
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Go
2424
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2525
with:
26-
go-version: ~1.23.7
26+
go-version: ~1.23.8
2727
cache: false
2828
- name: Cache Go
2929
id: go-cache
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Go
4747
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
4848
with:
49-
go-version: ~1.23.7
49+
go-version: ~1.23.8
5050
cache: false
5151
- name: Cache Go
5252
id: go-cache
@@ -70,7 +70,7 @@ jobs:
7070
- name: Setup Go
7171
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
7272
with:
73-
go-version: ~1.23.7
73+
go-version: ~1.23.8
7474
cache: false
7575
- name: Cache Go
7676
id: go-cache
@@ -95,7 +95,7 @@ jobs:
9595
- name: Setup Go
9696
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
9797
with:
98-
go-version: ~1.23.7
98+
go-version: ~1.23.8
9999
cache: false
100100
- name: Cache Go
101101
id: go-cache
@@ -200,7 +200,7 @@ jobs:
200200
- name: Setup Go
201201
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
202202
with:
203-
go-version: ~1.23.7
203+
go-version: ~1.23.8
204204
cache: false
205205
- name: Cache Go
206206
id: go-cache
@@ -264,7 +264,7 @@ jobs:
264264
- name: Setup Go
265265
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
266266
with:
267-
go-version: ~1.23.7
267+
go-version: ~1.23.8
268268
cache: false
269269
- name: Cache Go
270270
id: go-cache

0 commit comments

Comments
 (0)