Skip to content

Commit

Permalink
ci: specify go version as >=1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsimonemms committed Dec 24, 2022
1 parent 243efe5 commit e0d6963
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -10,6 +10,10 @@ jobs:

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'

- run: go version

- name: Install Go dependencies
run: go install ./...
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM golang AS builder
FROM golang:1.19 AS builder
ARG GIT_COMMIT
ARG GIT_REPO
ARG VERSION
Expand Down

0 comments on commit e0d6963

Please sign in to comment.