Skip to content

Commit 42a721c

Browse files
[Automation] Bump Golang version to 1.24.1 (#43488) (#43652)
* chore: Update NATS module Dockerfile Made with ❤️️ by updatecli * chore: Update Heartbeat debug Dockerfile Made with ❤️️ by updatecli * chore: Update HTTP module Dockerfile Made with ❤️️ by updatecli * chore: Update Filebeat debug Dockerfile Made with ❤️️ by updatecli * chore: Update .go-version Made with ❤️️ by updatecli * chore: Update .devcontainer/devcontainer.json Made with ❤️️ by updatecli * chore: Update Metricbeat debug Dockerfile Made with ❤️️ by updatecli * chore: Update Heartbeat Dockerfile Made with ❤️️ by updatecli * chore: Update Auditbeat Dockerfile Made with ❤️️ by updatecli * chore: Update go.mod Made with ❤️️ by updatecli * chore: Update from vsphere Dockerfile Made with ❤️️ by updatecli * chore: Update stan Dockerfile Made with ❤️️ by updatecli * chore: Update version.asciidoc Made with ❤️️ by updatecli * chore: Update Metricbeat Dockerfile Made with ❤️️ by updatecli --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> (cherry picked from commit 33da6dd) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 69e5bf3 commit 42a721c

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

Diff for: .devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{
66
"name": "Beats Development Container",
77
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
8-
"image": "mcr.microsoft.com/devcontainers/go:1-1.22-bullseye",
8+
"image": "mcr.microsoft.com/devcontainers/go:1-1.24-bullseye",
99
// Features to add to the dev container. More info: https://containers.dev/features.
1010
"features": {
1111
"ghcr.io/devcontainers/features/node:1": {},

Diff for: .go-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.0
1+
1.24.1

Diff for: auditbeat/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.0
1+
FROM golang:1.24.1
22

33
RUN \
44
apt-get update \

Diff for: dev-tools/kubernetes/filebeat/Dockerfile.debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.0 as builder
1+
FROM golang:1.24.1 as builder
22

33
ENV PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/go/bin:/usr/local/go/bin
44

Diff for: dev-tools/kubernetes/heartbeat/Dockerfile.debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.0 as builder
1+
FROM golang:1.24.1 as builder
22

33
ENV PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/go/bin:/usr/local/go/bin
44

Diff for: dev-tools/kubernetes/metricbeat/Dockerfile.debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.0 as builder
1+
FROM golang:1.24.1 as builder
22

33
ENV PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/go/bin:/usr/local/go/bin
44

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/elastic/beats/v7
22

3-
go 1.24.0
3+
go 1.24.1
44

55
require (
66
cloud.google.com/go/bigquery v1.65.0

Diff for: heartbeat/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.0
1+
FROM golang:1.24.1
22

33
RUN \
44
apt-get update \

Diff for: libbeat/docs/version.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:stack-version: 9.0.0
22
:doc-branch: main
3-
:go-version: 1.24.0
3+
:go-version: 1.24.1
44
:release-state: unreleased
55
:python: 3.7
66
:docker: 1.12

Diff for: metricbeat/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.0
1+
FROM golang:1.24.1
22
COPY --from=docker:26.0.0-alpine3.19 /usr/local/bin/docker /usr/local/bin/
33

44
RUN \

Diff for: metricbeat/module/http/_meta/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.0
1+
FROM golang:1.24.1
22

33
COPY test/main.go main.go
44

Diff for: metricbeat/module/nats/_meta/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG NATS_VERSION=2.0.4
22
FROM nats:$NATS_VERSION
33

44
# build stage
5-
FROM golang:1.24.0 AS build-env
5+
FROM golang:1.24.1 AS build-env
66
RUN apt-get install git mercurial gcc
77
RUN git clone https://github.com/nats-io/nats.go.git /nats-go
88
RUN cd /nats-go/examples/nats-bench && git checkout tags/v1.10.0 && go build .

Diff for: metricbeat/module/vsphere/_meta/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG VSPHERE_GOLANG_VERSION
2-
FROM golang:1.24.0
2+
FROM golang:1.24.1
33

44
RUN apt-get install curl git
55
RUN go install github.com/vmware/govmomi/vcsim@v0.30.4

Diff for: x-pack/metricbeat/module/stan/_meta/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG STAN_VERSION=0.15.1
22
FROM nats-streaming:$STAN_VERSION
33

44
# build stage
5-
FROM golang:1.24.0 AS build-env
5+
FROM golang:1.24.1 AS build-env
66
RUN apt-get install git mercurial gcc
77
RUN git clone https://github.com/nats-io/stan.go.git /stan-go
88
RUN cd /stan-go/examples/stan-bench && git checkout tags/v0.5.2 && go build .

0 commit comments

Comments
 (0)