Skip to content

Commit f6bc711

Browse files
Upgrade golang to 1.21.11 (#4943)
1 parent b848680 commit f6bc711

File tree

14 files changed

+17
-13
lines changed

14 files changed

+17
-13
lines changed

.github/workflows/auto-instrumentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
PYTHON_VERSION: '3.11'
2222
PIP_VERSION: '22.0.4'
2323
REQUIREMENTS_PATH: "internal/buildscripts/packaging/tests/requirements.txt"
24-
GO_VERSION: 1.21.10
24+
GO_VERSION: 1.21.11
2525

2626
jobs:
2727
cross-compile:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323
cancel-in-progress: true
2424

2525
env:
26-
GO_VERSION: 1.21.10
26+
GO_VERSION: 1.21.11
2727

2828
jobs:
2929
setup-environment:

.github/workflows/darwin-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
- '!internal/buildscripts/**'
2020

2121
env:
22-
GO_VERSION: '1.21.10'
22+
GO_VERSION: '1.21.11'
2323

2424
concurrency:
2525
group: darwin-test-${{ github.event.pull_request.number || github.ref }}

.github/workflows/gendependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- '.github/workflows/scripts/gendependabot.sh'
99

1010
env:
11-
GO_VERSION: 1.21.10
11+
GO_VERSION: 1.21.11
1212

1313
jobs:
1414
gendependabot:

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ concurrency:
2424
cancel-in-progress: true
2525

2626
env:
27-
GO_VERSION: "1.21.10"
27+
GO_VERSION: "1.21.11"
2828
jobs:
2929
agent-bundle-linux:
3030
runs-on: ubuntu-20.04

.github/workflows/lint-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
env:
16-
GO_VERSION: 1.21.10
16+
GO_VERSION: 1.21.11
1717

1818
jobs:
1919
lint:

.github/workflows/linux-package-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env:
3030
PYTHON_VERSION: '3.11'
3131
PIP_VERSION: '22.0.4'
3232
REQUIREMENTS_PATH: "internal/buildscripts/packaging/tests/requirements.txt"
33-
GO_VERSION: 1.21.10
33+
GO_VERSION: 1.21.11
3434

3535
jobs:
3636
setup-environment:

.github/workflows/vuln-scans.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- '.snyk'
1313

1414
env:
15-
GO_VERSION: '1.21.10'
15+
GO_VERSION: '1.21.11'
1616

1717
concurrency:
1818
group: vuln-scans-${{ github.event.pull_request.number || github.ref }}

.github/workflows/win-package-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ concurrency:
2424
cancel-in-progress: true
2525

2626
env:
27-
GO_VERSION: 1.21.10
27+
GO_VERSION: 1.21.11
2828

2929
jobs:
3030
setup-environment:

.github/workflows/windows-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- '!internal/buildscripts/**'
1919

2020
env:
21-
GO_VERSION: '1.21.10'
21+
GO_VERSION: '1.21.11'
2222

2323
concurrency:
2424
group: windows-test-${{ github.event.pull_request.number || github.ref }}

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ fossa:
121121
fi
122122
123123
.go-cache:
124-
image: '${DOCKER_HUB_REPO}/golang:1.21.10'
124+
image: '${DOCKER_HUB_REPO}/golang:1.21.11'
125125
variables:
126126
GOPATH: "$CI_PROJECT_DIR/.go"
127127
before_script:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### 💡 Enhancements 💡
6+
7+
- (Splunk) Upgrade golang to 1.21.11
8+
59
## v0.102.0
610

711
### 🛑 Breaking changes 🛑

internal/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/signalfx/splunk-otel-collector/internal/tools
22

33
go 1.21.0
44

5-
toolchain go1.21.10
5+
toolchain go1.21.11
66

77
require (
88
github.com/client9/misspell v0.3.4

pkg/processor/timestampprocessor/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/signalfx/splunk-otel-collector/pkg/processor/timestampprocesso
22

33
go 1.21.0
44

5-
toolchain go1.21.10
5+
toolchain go1.21.11
66

77
require (
88
github.com/stretchr/testify v1.9.0

0 commit comments

Comments
 (0)