File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 12
12
# go needs absolute directories, using the $HOME variable doesn't work here.
13
13
DOWNLOAD_CACHE : /home/runner/work/download_cache
14
14
15
+ # If you change this value, please change it in the following files as well:
16
+ # /Dockerfile
17
+ # /dev.Dockerfile
18
+ GO_VERSION : 1.17.6
19
+
15
20
jobs :
16
21
frontend :
17
22
name : frontend tests on ${{ matrix.os }}
@@ -217,5 +222,10 @@ jobs:
217
222
working-directory : ./app
218
223
run : yarn
219
224
225
+ - name : setup go ${{ env.GO_VERSION }}
226
+ uses : actions/setup-go@v2
227
+ with :
228
+ go-version : ' ${{ env.GO_VERSION }}'
229
+
220
230
- name : run check
221
231
run : make itest
Original file line number Diff line number Diff line change @@ -33,7 +33,10 @@ RUN apk add --no-cache --update alpine-sdk \
33
33
34
34
# The first stage is already done and all static assets should now be generated
35
35
# in the app/build sub directory.
36
- FROM golang:1.16.0-alpine as golangbuilder
36
+ # If you change this value, please also update:
37
+ # /dev.Dockerfile
38
+ # /.github/workflows/main.yml
39
+ FROM golang:1.17.6-alpine as golangbuilder
37
40
38
41
# Instead of checking out from git again, we just copy the whole working
39
42
# directory of the previous stage that includes the generated static assets.
Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ RUN cd /go/src/github.com/lightninglabs/lightning-terminal/app \
10
10
11
11
# The first stage is already done and all static assets should now be generated
12
12
# in the app/build sub directory.
13
- FROM golang:1.16.0-alpine as golangbuilder
13
+ # If you change this value, please also update:
14
+ # /Dockerfile
15
+ # /.github/workflows/main.yml
16
+ FROM golang:1.17.6-alpine as golangbuilder
14
17
15
18
# Instead of checking out from git again, we just copy the whole working
16
19
# directory of the previous stage that includes the generated static assets.
You can’t perform that action at this time.
0 commit comments