Skip to content

Commit 18bfb5c

Browse files
internal: upgrade to go1.22.7 (#90)
### Description OB-36440 Upgrade golang to 1.22.7 ### Checklist - [ ] Created tests which fail without the change (if possible) - [ ] Extended the README / documentation, if necessary
1 parent e6c18fb commit 18bfb5c

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

.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.22.5
28+
go-version: 1.22.7
2929
- name: Install msitools
3030
run: sudo apt-get install -y wixl
3131
# More assembly might be required: Docker logins, GPG, etc.

.github/workflows/release-nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Go
2727
uses: actions/setup-go@v5
2828
with:
29-
go-version: 1.22.5
29+
go-version: 1.22.7
3030
- name: Install msitools
3131
run: sudo apt-get install -y wixl
3232
# More assembly might be required: Docker logins, GPG, etc.

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.22.5
25+
go-version: 1.22.7
2626
- name: Install msitools
2727
run: sudo apt-get install -y wixl
2828
# More assembly might be required: Docker logins, GPG, etc.

.github/workflows/tests-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Go
3333
uses: actions/setup-go@v5
3434
with:
35-
go-version: 1.22.5
35+
go-version: 1.22.7
3636
- name: Install msitools
3737
run: sudo apt-get install -y wixl
3838
- name: Install qemu

cmd/collector/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module observe/otelcol
44

5-
go 1.22.5
5+
go 1.22.7
66

77
require (
88
github.com/observeinc/observe-agent/components/processors/observek8sattributesprocessor v0.0.0-00010101000000-000000000000

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.22.5
3+
go 1.22.7
44

55
require (
66
github.com/stretchr/testify v1.9.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module observe-agent
22

3-
go 1.22.5
3+
go 1.22.7
44

55
require (
66
github.com/prometheus/client_model v0.6.1

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.22.5
1+
go 1.22.7
22

33
use (
44
.

internal/tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module observe-agent/internal/tools
22

3-
go 1.22.5
3+
go 1.22.7
44

55
require (
66
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect

packaging/docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ RUN tar czhf observe-agent.tar.gz /observe-agent $(ldd /observe-agent | grep -oP
1212
# however, we can copy full directory as root (/) to be base file structure for scratch image
1313
RUN mkdir /output && tar xf /observe-agent.tar.gz --directory /output
1414

15-
FROM alpine:3.20.2 AS directories
15+
FROM alpine:3.20.3 AS directories
1616
RUN mkdir -p /var/lib/observe-agent/filestorage
1717

18-
FROM alpine:3.20.2 AS certs
18+
FROM alpine:3.20.3 AS certs
1919
RUN apk --update add ca-certificates
2020

2121
FROM debian:12.5 AS systemd
@@ -28,7 +28,7 @@ RUN tar czhf journalctl.tar.gz /bin/journalctl $(ldd /bin/journalctl | grep -oP
2828
# however, we can copy full directory as root (/) to be base file structure for scratch image
2929
RUN mkdir /output && tar xf /journalctl.tar.gz --directory /output
3030

31-
FROM alpine:3.20.2
31+
FROM alpine:3.20.3
3232
ADD packaging/docker/observe-agent /etc/observe-agent
3333
COPY --from=systemd /output/ /
3434
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt

0 commit comments

Comments
 (0)