Skip to content

Commit

Permalink
Update Go version to 1.18 for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
sergystepanov committed Mar 21, 2022
1 parent 3292964 commit 242b8f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: ^1.17
go-version: ^1.18

- name: Get Linux dev libraries and tools
if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: ^1.17
go-version: ^1.18

- name: Get Linux dev libraries and tools
if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get -qq update && apt-get -qq install --no-install-recommends -y \
&& rm -rf /var/lib/apt/lists/*

# go setup layer
ARG GO=go1.17.linux-amd64.tar.gz
ARG GO=go1.18.linux-amd64.tar.gz
RUN wget -q https://golang.org/dl/$GO \
&& rm -rf /usr/local/go \
&& tar -C /usr/local -xzf $GO \
Expand Down

0 comments on commit 242b8f0

Please sign in to comment.