Skip to content

Commit 220e931

Browse files
committed
multi: bump Golang versions to v1.19.4
1 parent c80a597 commit 220e931

File tree

7 files changed

+194
-226
lines changed

7 files changed

+194
-226
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
# /Dockerfile
2222
# /frdrpc/Dockerfile
2323
# /itest/Dockerfile
24-
GO_VERSION: 1.18.8
24+
GO_VERSION: 1.19.4
2525

2626
jobs:
2727
########################

dataset/dataset.go

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,20 +156,26 @@ func (d Dataset) isIQROutlier(value, lowerQuartile, upperQuartile,
156156
// Given some random set of data, with lower quartile = 5 and upper quartile
157157
// = 6, the inter-quartile range is 1.
158158
//
159-
// LQ UQ
160-
// [ 1 2 5 5 5 6 6 6 8 11 ]
159+
// LQ UQ
160+
// [ 1 2 5 5 5 6 6 6 8 11 ]
161161
//
162162
// For larger values, eg multiplier=3, we will detect fewer outliers:
163163
// Lower outlier bound: 5 - (1 * 3) = 2
164-
// -> 1 is a strong lower outlier
164+
//
165+
// -> 1 is a strong lower outlier
166+
//
165167
// Upper outlier bound: 6 + (1 * 3) = 9
166-
// -> 11 is a strong upper outlier
168+
//
169+
// -> 11 is a strong upper outlier
167170
//
168171
// For smaller values, eg multiplier=1.5, we detect more outliers:
169172
// Weak lower outlier bound: 5 - (1 * 1.5) = 3.5
170-
// -> 1 and 2 are weak lower outliers
173+
//
174+
// -> 1 and 2 are weak lower outliers
175+
//
171176
// Weak upper outlier bound: 6 + (1 *1.5) = 7.5
172-
// -> 8 and 11 are weak upper outliers
177+
//
178+
// -> 8 and 11 are weak upper outliers
173179
func (d Dataset) GetOutliers(outlierMultiplier float64) (
174180
map[string]*OutlierResult, error) {
175181

frdrpc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18.8-buster
1+
FROM golang:1.19.4-buster
22

33
RUN apt-get update && apt-get install -y \
44
git \

frdrpc/faraday.pb.go

Lines changed: 118 additions & 156 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frdrpc/faraday_grpc.pb.go

Lines changed: 60 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

itest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# base images. The first stage builds lnd with the golang base image.
33
# The second stage runs directly on the bitcoind base image and adds all
44
# binaries required to run the tests with.
5-
FROM golang:1.18.8-alpine as builder
5+
FROM golang:1.19.4-alpine as builder
66

77
ARG LND_VERSION=v0.15.4-beta
88

tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18.8
1+
FROM golang:1.19.4
22

33
RUN apt-get update && apt-get install -y git
44
ENV GOCACHE=/tmp/build/.cache

0 commit comments

Comments
 (0)