Skip to content

Commit

Permalink
Upgrade go version to 1.18.0 (#4)
Browse files Browse the repository at this point in the history
* upgrade go version to 1.18.0

* upgrade linter to 1.45.0
  • Loading branch information
muraty committed Apr 13, 2022
1 parent b5e22d2 commit a7c268a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.16.2
go-version: 1.18.0

- uses: actions/checkout@v2

Expand All @@ -32,7 +32,7 @@ jobs:
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.30
version: v1.45.0

- name: Test
run: go test -race -v -covermode atomic -coverprofile=covprofile ./...
Expand All @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.16.2
go-version: 1.18.0
- uses: goreleaser/goreleaser-action@v2.2.0
with:
args: release --rm-dist
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.16.2-alpine3.13 AS builder
FROM golang:1.18.0-alpine3.15 AS builder
WORKDIR /go/src/github.com/cenkalti/tcpproxy
COPY . .
ARG VERSION
Expand Down

0 comments on commit a7c268a

Please sign in to comment.