Skip to content

Commit

Permalink
ci: update action files to use Go1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
nadoo committed Aug 17, 2021
1 parent c055c33 commit 5578b19
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- name: Go Env
run: go env
- name: Test
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- name: Go Env
run: go env
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- name: Go Env
run: go env
- name: Run GoReleaser
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build Stage
FROM golang:1.16-alpine AS build-env
FROM golang:1.17-alpine AS build-env

ADD . /src

Expand Down

0 comments on commit 5578b19

Please sign in to comment.