Skip to content

Commit df2b5eb

Browse files
feat: bump to golang 1.23.10 (#226)
### Description OB-XXX Please explain the changes you made here. ### Checklist - [ ] Created tests which fail without the change (if possible) - [ ] Extended the README / documentation, if necessary
1 parent 55793c7 commit df2b5eb

File tree

15 files changed

+17
-17
lines changed

15 files changed

+17
-17
lines changed

.github/workflows/orca.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Go
5252
uses: actions/setup-go@v5
5353
with:
54-
go-version: 1.23.8
54+
go-version: 1.23.10
5555

5656
- name: Run GoReleaser
5757
uses: goreleaser/goreleaser-action@v6

.github/workflows/release-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Go
2626
uses: actions/setup-go@v5
2727
with:
28-
go-version: 1.23.8
28+
go-version: 1.23.10
2929
- name: Install qemu
3030
uses: docker/setup-qemu-action@v3
3131
- name: Run GoReleaser

.github/workflows/release-nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set up Go
3939
uses: actions/setup-go@v5
4040
with:
41-
go-version: 1.23.8
41+
go-version: 1.23.10
4242

4343
- name: Install qemu
4444
uses: docker/setup-qemu-action@v3

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: 1.23.8
36+
go-version: 1.23.10
3737

3838
- name: Install qemu
3939
uses: docker/setup-qemu-action@v3

.github/workflows/tests-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Go
3434
uses: actions/setup-go@v5
3535
with:
36-
go-version: 1.23.8
36+
go-version: 1.23.10
3737
- name: Install qemu
3838
uses: docker/setup-qemu-action@v3
3939
- name: Run GoReleaser

.github/workflows/tests-unit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
test:
1919
strategy:
2020
matrix:
21-
go: [1.23.8]
21+
go: [1.23.10]
2222
platform: [ubuntu-latest]
2323
runs-on: ${{ matrix.platform }}
2424
steps:

.github/workflows/vuln-check-full.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: 1.23.8
39+
go-version: 1.23.10
4040

4141
- name: Run GoReleaser
4242
uses: goreleaser/goreleaser-action@v6

.github/workflows/vuln-check-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Go
3636
uses: actions/setup-go@v5
3737
with:
38-
go-version: 1.23.8
38+
go-version: 1.23.10
3939

4040
- name: Run GoReleaser
4141
uses: goreleaser/goreleaser-action@v6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Code for the Observe agent and CLI. The agent code is based on the OpenTelemetry
44

55
# Build
66

7-
To run the code you need to have `golang v1.23.8` installed. Then you can run the following command to compile the binary.
7+
To run the code you need to have `golang v1.23.10` installed. Then you can run the following command to compile the binary.
88

99
```sh
1010
go build -o observe-agent

components/processors/observek8sattributesprocessor/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/observeinc/observe-agent/components/processors/observek8sattributesprocessor
22

3-
go 1.23.8
3+
go 1.23.10
44

55
require (
66
github.com/jmespath/go-jmespath v0.4.0

0 commit comments

Comments
 (0)