diff --git a/.github/workflows/dev_builds.yml b/.github/workflows/dev_builds.yml index 5cfd326446..41cde898e7 100644 --- a/.github/workflows/dev_builds.yml +++ b/.github/workflows/dev_builds.yml @@ -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. diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index 7b48bd02df..217c73f663 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -10,7 +10,7 @@ defaults: shell: bash env: - GO_VERSION: "1.22.8" + GO_VERSION: "1.23.0" jobs: build-changed: diff --git a/.github/workflows/workflow-build.yml b/.github/workflows/workflow-build.yml index e0d6bc796f..754115c59e 100644 --- a/.github/workflows/workflow-build.yml +++ b/.github/workflows/workflow-build.yml @@ -49,7 +49,7 @@ defaults: shell: bash env: - GO_VERSION: "1.22.8" + GO_VERSION: "1.23.0" VERSION: ${{ inputs.version }} jobs: diff --git a/.github/workflows/workflow-test.yml b/.github/workflows/workflow-test.yml index a61514273a..9128fdc344 100644 --- a/.github/workflows/workflow-test.yml +++ b/.github/workflows/workflow-test.yml @@ -28,7 +28,7 @@ defaults: shell: bash env: - GO_VERSION: "1.22.8" + GO_VERSION: "1.23.0" jobs: test: diff --git a/Dockerfile_local b/Dockerfile_local index abb8024d01..3fddb9e8fa 100644 --- a/Dockerfile_local +++ b/Dockerfile_local @@ -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 diff --git a/ci/build-fips-action/Dockerfile b/ci/build-fips-action/Dockerfile index ea390503db..6b33ff7c91 100644 --- a/ci/build-fips-action/Dockerfile +++ b/ci/build-fips-action/Dockerfile @@ -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}" diff --git a/pkg/configprovider/globprovider/go.mod b/pkg/configprovider/globprovider/go.mod index f27bd56e1f..4d1b6a622f 100644 --- a/pkg/configprovider/globprovider/go.mod +++ b/pkg/configprovider/globprovider/go.mod @@ -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 diff --git a/pkg/configprovider/opampprovider/go.mod b/pkg/configprovider/opampprovider/go.mod index d313d3b0c8..333d974acc 100644 --- a/pkg/configprovider/opampprovider/go.mod +++ b/pkg/configprovider/opampprovider/go.mod @@ -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 diff --git a/pkg/extension/sumologicextension/go.mod b/pkg/extension/sumologicextension/go.mod index 54f09e0f6e..aec13cd609 100644 --- a/pkg/extension/sumologicextension/go.mod +++ b/pkg/extension/sumologicextension/go.mod @@ -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 diff --git a/pkg/receiver/jobreceiver/go.mod b/pkg/receiver/jobreceiver/go.mod index ac590138d3..b9746dbd0b 100644 --- a/pkg/receiver/jobreceiver/go.mod +++ b/pkg/receiver/jobreceiver/go.mod @@ -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 diff --git a/pkg/receiver/rawk8seventsreceiver/go.mod b/pkg/receiver/rawk8seventsreceiver/go.mod index cdf2e52807..e9feb51838 100644 --- a/pkg/receiver/rawk8seventsreceiver/go.mod +++ b/pkg/receiver/rawk8seventsreceiver/go.mod @@ -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 diff --git a/vagrant/provision.sh b/vagrant/provision.sh index 4c29fb834d..7343589734 100644 --- a/vagrant/provision.sh +++ b/vagrant/provision.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export GO_VERSION="1.22.8" +export GO_VERSION="1.23.0" ARCH="$(dpkg --print-architecture)"