File tree Expand file tree Collapse file tree 8 files changed +12
-14
lines changed Expand file tree Collapse file tree 8 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 17
17
- name : Set up Go
18
18
uses : actions/setup-go@v2
19
19
with :
20
- go-version : ^1.17
20
+ go-version : ^1.18
21
21
id : go
22
22
23
23
- name : Set up Node
Original file line number Diff line number Diff line change 83
83
- name : Set up Go
84
84
uses : actions/setup-go@v2
85
85
with :
86
- go-version : ^1.17
86
+ go-version : ^1.18
87
87
id : go
88
88
89
89
- name : Set up Node
Original file line number Diff line number Diff line change 63
63
- name : Setup Go
64
64
uses : actions/setup-go@v2
65
65
with :
66
- go-version : ^1.17
66
+ go-version : ^1.18
67
67
id : go
68
68
69
69
- name : Setup Node
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ RUN make clean ui
18
18
19
19
20
20
# STEP 2 build executable binary
21
- FROM golang:1.17 -alpine as builder
21
+ FROM golang:1.18 -alpine as builder
22
22
23
23
# Install git + SSL ca certificates.
24
24
# Git is required for fetching the dependencies.
Original file line number Diff line number Diff line change 1
1
# executes binary build excluding UI
2
2
3
- # STEP 2 build executable binary
4
- FROM golang:1.17-alpine as builder
5
-
6
3
# define RELEASE=1 to hide commit hash
7
4
ARG RELEASE={{ env "RELEASE" }}
5
+ FROM golang:1.18-alpine as builder
8
6
9
7
WORKDIR /build
10
8
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ RUN make clean ui
20
20
21
21
22
22
# STEP 2 build executable binary
23
- FROM golang:1.17-alpine as builder
24
23
25
24
# define RELEASE=1 to hide commit hash
26
25
ARG RELEASE={{ env "RELEASE" }}
26
+ FROM golang:1.18-alpine as builder
27
27
28
28
# Install git + SSL ca certificates.
29
29
# Git is required for fetching the dependencies.
Original file line number Diff line number Diff line change 1
1
// Approach from https://github.com/theckman/goconstraint/
2
2
3
3
// Package goversion should only be used as a blank import. If imported, it
4
- // will only compile if the Go runtime version is >= 1.17 .
4
+ // will only compile if the Go runtime version is >= 1.18 .
5
5
package goversion
6
6
7
- // This will fail to compile if the Go runtime version isn't >= 1.17 .
8
- var _ = __EVCC_REQUIRES_GO_VERSION_1_17__
7
+ // This will fail to compile if the Go runtime version isn't >= 1.18 .
8
+ var _ = __EVCC_REQUIRES_GO_VERSION_1_18__
Original file line number Diff line number Diff line change 1
- //go:build go1.17
2
- // +build go1.17
1
+ //go:build go1.18
2
+ // +build go1.18
3
3
4
4
package goversion
5
5
6
- const __EVCC_REQUIRES_GO_VERSION_1_17__ = uint8 (0 )
6
+ const __EVCC_REQUIRES_GO_VERSION_1_18__ = uint8 (0 )
You can’t perform that action at this time.
0 commit comments