Skip to content

Commit

Permalink
Merge pull request #427 from positiveblue/update-go-19.4
Browse files Browse the repository at this point in the history
build: update go to v1.19.4-beta
  • Loading branch information
guggero authored Jan 6, 2023
2 parents 59e0fd7 + 53835f5 commit b24e1b1
Show file tree
Hide file tree
Showing 14 changed files with 929 additions and 1,215 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ env:
GO111MODULE: on

# If you change this value, please change it in the following files as well:
# /.travis.yml
# /Dockerfile
GO_VERSION: 1.18.5
# /.golanlint-ci
GO_VERSION: 1.19.4

jobs:
########################
Expand Down
4 changes: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ linters-settings:
- G402 # Look for bad TLS connection settings.
- G306 # Poor file permissions used when writing to a new file.
staticcheck:
go: "1.18"
go: "1.19"
checks: ["-SA1019"]

linters:
Expand Down Expand Up @@ -110,4 +110,4 @@ issues:
# (math/rand) will pass the linter.
- path: _test\.go
linters:
- gosec
- gosec
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.18.5-alpine as builder
FROM --platform=${BUILDPLATFORM} golang:1.19.4-alpine as builder

# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
# queries required to connect to linked containers succeed.
Expand Down
975 changes: 401 additions & 574 deletions auctioneerrpc/auctioneer.pb.go

Large diffs are not rendered by default.

22 changes: 10 additions & 12 deletions auctioneerrpc/hashmail.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 26 additions & 34 deletions auctioneerrpc/hashmail_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 20 additions & 19 deletions clientdb/batch_snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,26 @@ import (
)

// batch-snapshot-bucket
// |
// |-- batch-snapshot-pending-key: <batch snapshot>
// |
// |-- batch-snapshot-seq-bucket
// | |
// | |-- <sequence num>
// | | |
// | | |-- batch-snapshot-batch: <batch snapshot>
// | |
// | |-- <sequence num>
// | | |
// | ... ...
// |
// |-- batch-snapshot-batchid-index-bucket
// |
// |-- <batch id>: <sequence-num>
// |-- <batch id>: <sequence-num>
// |
// ...
//
// |
// |-- batch-snapshot-pending-key: <batch snapshot>
// |
// |-- batch-snapshot-seq-bucket
// | |
// | |-- <sequence num>
// | | |
// | | |-- batch-snapshot-batch: <batch snapshot>
// | |
// | |-- <sequence num>
// | | |
// | ... ...
// |
// |-- batch-snapshot-batchid-index-bucket
// |
// |-- <batch id>: <sequence-num>
// |-- <batch id>: <sequence-num>
// |
// ...
var (
// batchSnapshotBucketKey is the top level bucket where we'll find
// snapshot information about all batches we have participated in.
Expand Down
2 changes: 1 addition & 1 deletion gen/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.5-bullseye
FROM golang:1.19.4-bullseye

RUN go install github.com/golang/mock/mockgen@73266f9366fcf2ccef0b880618e5a9266e4136f4

Expand Down
2 changes: 1 addition & 1 deletion poolrpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.5-buster
FROM golang:1.19.4-buster

RUN apt-get update && apt-get install -y \
git \
Expand Down
Loading

0 comments on commit b24e1b1

Please sign in to comment.