File tree Expand file tree Collapse file tree 8 files changed +18
-11
lines changed Expand file tree Collapse file tree 8 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,11 @@ jobs:
11
11
runs-on : ubuntu-20.04
12
12
13
13
steps :
14
- - name : Set up Go ^1.20.5
15
- uses : actions/setup-go@v2
14
+ # We can't go past 1.20.7 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
15
+ - name : Set up Go 1.20.7
16
+ uses : actions/setup-go@v4
16
17
with :
17
- go-version : ^ 1.20.5
18
+ go-version : ' 1.20.7 '
18
19
19
20
- name : Check go version
20
21
run : go version
Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-20.04
9
9
10
10
steps :
11
- - name : Set up Go ^1.20.5
12
- uses : actions/setup-go@v2
11
+ # We can't go past 1.20.7 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
12
+ - name : Set up Go 1.20.7
13
+ uses : actions/setup-go@v4
13
14
with :
14
- go-version : ^ 1.20.5
15
+ go-version : ' 1.20.7 '
15
16
id : go
16
17
17
18
- name : Check go version
Original file line number Diff line number Diff line change 1
- FROM golang:1.20.5-buster AS builder
1
+ # We can't go past 1.20.7 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
2
+ FROM golang:1.20.7-buster AS builder
2
3
3
4
WORKDIR /go/src/github.com/newrelic/newrelic-fluent-bit-output
4
5
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ RUN setx PATH "%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
28
28
29
29
# Install Base Dependencies
30
30
RUN choco install --yes --no-progress mingw git
31
- RUN choco install --yes --no-progress golang --version=1.20.5
31
+ # We can't go past 1.20.7 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
32
+ RUN choco install --yes --no-progress golang --version=1.20.7
32
33
33
34
# Put the path before the other paths so that MinGW shadows Windows commands.
34
35
RUN setx PATH "C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw\bin;%PATH%"
Original file line number Diff line number Diff line change 1
- FROM golang:1.20.5-buster AS builder
1
+ # We can't go past 1.20.7 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
2
+ FROM golang:1.20.7-buster AS builder
2
3
3
4
WORKDIR /go/src/github.com/newrelic/newrelic-fluent-bit-output
4
5
Original file line number Diff line number Diff line change 1
- FROM golang:1.20.5-buster AS builder
1
+ # We can't go past 1.20.7 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
2
+ FROM golang:1.20.7-buster AS builder
2
3
3
4
WORKDIR /go/src/github.com/newrelic/newrelic-fluent-bit-output
4
5
Original file line number Diff line number Diff line change 1
1
module github.com/newrelic/newrelic-fluent-bit-output
2
2
3
+ // We can't go past 1.20.7 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898
3
4
go 1.20
4
5
5
6
require (
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
- const VERSION = "1.19.0 "
3
+ const VERSION = "1.19.1 "
You can’t perform that action at this time.
0 commit comments