File tree Expand file tree Collapse file tree 4 files changed +20
-20
lines changed Expand file tree Collapse file tree 4 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 24
24
25
25
strategy :
26
26
matrix :
27
- node_version : [12 .x]
27
+ node_version : [16 .x]
28
28
os : [ubuntu-latest, windows-latest, macOS-latest]
29
29
30
30
steps :
@@ -109,10 +109,10 @@ jobs:
109
109
id : yarn-cache
110
110
with :
111
111
path : ${{ steps.yarn-cache-dir.outputs.dir }}
112
- key : ${{ runner.os }}-yarn-12 .x-${{ hashFiles('**/yarn.lock') }}
112
+ key : ${{ runner.os }}-yarn-16 .x-${{ hashFiles('**/yarn.lock') }}
113
113
restore-keys : |
114
- ${{ runner.os }}-yarn-12 .x-${{ hashFiles('**/yarn.lock') }}
115
- ${{ runner.os }}-yarn-12 .x-
114
+ ${{ runner.os }}-yarn-16 .x-${{ hashFiles('**/yarn.lock') }}
115
+ ${{ runner.os }}-yarn-16 .x-
116
116
${{ runner.os }}-yarn-
117
117
118
118
- name : setup go v${{ matrix.go_version }}
@@ -138,10 +138,10 @@ jobs:
138
138
- name : git checkout
139
139
uses : actions/checkout@v2
140
140
141
- - name : setup nodejs v${{ matrix.node_version }}
141
+ - name : setup nodejs v16.x
142
142
uses : actions/setup-node@v1
143
143
with :
144
- node-version : 12 .x
144
+ node-version : 16 .x
145
145
146
146
- name : download cache
147
147
uses : actions/cache@v1
@@ -192,7 +192,7 @@ jobs:
192
192
- name : setup nodejs v${{ matrix.node_version }}
193
193
uses : actions/setup-node@v1
194
194
with :
195
- node-version : 12 .x
195
+ node-version : 16 .x
196
196
197
197
- name : download cache
198
198
uses : actions/cache@v1
Original file line number Diff line number Diff line change 1
1
# Start with a NodeJS base image that also contains yarn.
2
- FROM node:12.17.0 -alpine as nodejsbuilder
2
+ FROM node:16.14.2 -alpine as nodejsbuilder
3
3
4
4
# Pass a tag, branch or a commit using build-arg. This allows a docker image to
5
5
# be built from a specified Git state. The default image will use the Git tip of
@@ -20,8 +20,8 @@ ARG public_url=""
20
20
# be mitigated by switching to HTTP and increasing the network timeout.
21
21
# See https://github.com/yarnpkg/yarn/issues/5259 for more info.
22
22
RUN apk add --no-cache --update alpine-sdk \
23
- python \
24
- git \
23
+ python \
24
+ git \
25
25
&& git clone https://github.com/lightninglabs/lightning-terminal /go/src/github.com/lightninglabs/lightning-terminal \
26
26
&& cd /go/src/github.com/lightninglabs/lightning-terminal \
27
27
&& git checkout $checkout \
@@ -51,7 +51,7 @@ ENV GO111MODULE on
51
51
52
52
# Install dependencies and install/build lightning-terminal.
53
53
RUN apk add --no-cache --update alpine-sdk \
54
- make \
54
+ make \
55
55
&& cd /go/src/github.com/lightninglabs/lightning-terminal \
56
56
&& make go-install PUBLIC_URL=$public_url \
57
57
&& make go-install-cli
@@ -75,9 +75,9 @@ COPY --from=golangbuilder /go/bin/pool /bin/
75
75
76
76
# Add bash.
77
77
RUN apk add --no-cache \
78
- bash \
79
- jq \
80
- ca-certificates
78
+ bash \
79
+ jq \
80
+ ca-certificates
81
81
82
82
# Specify the start command and entrypoint as the lightning-terminal daemon.
83
83
ENTRYPOINT ["litd" ]
Original file line number Diff line number Diff line change 1
1
# Start with a NodeJS base image that also contains yarn.
2
- FROM node:12.17.0 -alpine as nodejsbuilder
2
+ FROM node:16.14.2 -alpine as nodejsbuilder
3
3
4
4
# Copy in the local repository to build from.
5
5
COPY . /go/src/github.com/lightninglabs/lightning-terminal
@@ -28,7 +28,7 @@ ENV GO111MODULE on
28
28
29
29
# Install dependencies and install/build lightning-terminal.
30
30
RUN apk add --no-cache --update alpine-sdk \
31
- make \
31
+ make \
32
32
&& cd /go/src/github.com/lightninglabs/lightning-terminal \
33
33
&& make go-install \
34
34
&& make go-install-cli
@@ -52,9 +52,9 @@ COPY --from=golangbuilder /go/bin/pool /bin/
52
52
53
53
# Add bash.
54
54
RUN apk add --no-cache \
55
- bash \
56
- jq \
57
- ca-certificates
55
+ bash \
56
+ jq \
57
+ ca-certificates
58
58
59
59
# Specify the start command and entrypoint as the lightning-terminal daemon.
60
60
ENTRYPOINT ["litd" ]
Original file line number Diff line number Diff line change 1
1
# Start with a NodeJS base image that also contains yarn.
2
- FROM node:12.17.0 -buster as nodejsbuilder
2
+ FROM node:16.14.2 -buster as nodejsbuilder
3
3
4
4
RUN apt-get update && apt-get install -y \
5
5
git \
You can’t perform that action at this time.
0 commit comments