Skip to content

Commit

Permalink
build: revert back to Go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
swiatekm committed Nov 24, 2023
1 parent 5e236b8 commit 180396c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .changelog/1346.fixed.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build: revert back to Go 1.20
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.21.4"
GO_VERSION: "1.20.11"

jobs:

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.21.4"
GO_VERSION: "1.20.11"

jobs:

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

env:
GO_VERSION: "~1.21.4"
GO_VERSION: "1.20.11"

jobs:

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 @@ -28,7 +28,7 @@ defaults:
shell: bash

env:
GO_VERSION: "~1.21.4"
GO_VERSION: "1.20.11"

jobs:
build:
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.21.4"
GO_VERSION: "1.20.11"

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.21-alpine as builder
FROM golang:1.20.11-alpine as builder
ADD . /src
WORKDIR /src/otelcolbuilder/
ENV CGO_ENABLED=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.21.4"
export GO_VERSION="1.20.11"

sudo apt update -y
sudo apt install -y \
Expand Down

0 comments on commit 180396c

Please sign in to comment.