Skip to content

Commit

Permalink
Upgrade go to 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rnishtala-sumo committed Mar 6, 2025
1 parent 4a39009 commit 32550ca
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:
shell: bash

env:
GO_VERSION: "1.22.8"
GO_VERSION: "1.23.0"

jobs:
# Add lint to dev builds as that's the only way for cache to be shared across branches.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults:
shell: bash

env:
GO_VERSION: "1.22.8"
GO_VERSION: "1.23.0"

jobs:
build-changed:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ defaults:
shell: bash

env:
GO_VERSION: "1.22.8"
GO_VERSION: "1.23.0"
VERSION: ${{ inputs.version }}

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ defaults:
shell: bash

env:
GO_VERSION: "1.22.8"
GO_VERSION: "1.23.0"

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.8-alpine AS builder
FROM golang:1.23.0-alpine AS builder
ADD . /src
WORKDIR /src/otelcolbuilder/
ENV CGO_ENABLED=0
Expand Down
2 changes: 1 addition & 1 deletion ci/build-fips-action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV TARGETARCH=$TARGETARCH

RUN yum groupinstall -y "Development Tools" && yum install -y curl git

RUN curl -Lo go.tar.gz https://go.dev/dl/go1.22.8.linux-$TARGETARCH.tar.gz
RUN curl -Lo go.tar.gz https://go.dev/dl/go1.23.0.linux-$TARGETARCH.tar.gz
RUN tar -zxvf go.tar.gz -C /usr/local
ENV PATH="/usr/local/go/bin:${PATH}"

Expand Down
2 changes: 1 addition & 1 deletion pkg/configprovider/globprovider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/globprov

go 1.22.0

toolchain go1.22.8
toolchain go1.23.0

require (
github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/providerutil v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 1 addition & 1 deletion pkg/configprovider/opampprovider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/opamppro

go 1.22.0

toolchain go1.22.8
toolchain go1.23.0

require (
github.com/SumoLogic/sumologic-otel-collector/pkg/configprovider/globprovider v0.0.0-00010101000000-000000000000
Expand Down
2 changes: 1 addition & 1 deletion pkg/extension/sumologicextension/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/SumoLogic/sumologic-otel-collector/pkg/extension/sumologicexte

go 1.22.0

toolchain go1.22.8
toolchain go1.23.0

require (
github.com/Showmax/go-fqdn v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/receiver/jobreceiver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/SumoLogic/sumologic-otel-collector/pkg/receiver/jobreceiver

go 1.22.0

toolchain go1.22.8
toolchain go1.23.0

require (
github.com/cenkalti/backoff/v4 v4.3.0
Expand Down
2 changes: 1 addition & 1 deletion pkg/receiver/rawk8seventsreceiver/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/SumoLogic/sumologic-otel-collector/pkg/receiver/rawk8seventsre

go 1.22.0

toolchain go1.22.8
toolchain go1.23.0

require (
github.com/cenkalti/backoff/v4 v4.3.0
Expand Down
2 changes: 1 addition & 1 deletion vagrant/provision.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

export GO_VERSION="1.22.8"
export GO_VERSION="1.23.0"

ARCH="$(dpkg --print-architecture)"

Expand Down

0 comments on commit 32550ca

Please sign in to comment.