Skip to content

Commit

Permalink
Merge pull request #41 from m-lab/sandbox-cristinaleon-1.20
Browse files Browse the repository at this point in the history
Update go version to 1.20
  • Loading branch information
robertodauria authored Aug 24, 2023
2 parents 5f42a93 + 54cda9b commit 774002e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- uses: actions/setup-go@v1
with:
go-version: "1.18.3"
go-version: "1.20"
- uses: actions/checkout@v2
- run: go test -race -v -coverprofile=dash.cov -coverpkg=./... ./...
- uses: shogo82148/actions-goveralls@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/privacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- uses: actions/setup-go@v1
with:
go-version: "1.18.3"
go-version: "1.20"
- uses: actions/checkout@v2
- run: go build -v ./cmd/dash-client
- run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18 as build
FROM golang:1.20 as build
ADD . /go/src/github.com/neubot/dash
WORKDIR /go/src/github.com/neubot/dash
RUN CGO_ENABLED=0 go build -v -tags netgo -ldflags "-s -w -extldflags \"-static\"" ./cmd/dash-server
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/neubot/dash

go 1.18
go 1.20

require (
github.com/apex/log v1.9.0
Expand Down

0 comments on commit 774002e

Please sign in to comment.