Skip to content

Commit

Permalink
fix: docker golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
lmendes86 committed Sep 6, 2024
1 parent fad92ad commit f00f149
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.4'
go-version: '1.23.0'
- name: Go get
run: go get -t ./...
- name: Build
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.4'
go-version: '1.23.0'
- name: Install checks
run: |
go install honnef.co/go/tools/cmd/staticcheck@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 @@ -66,7 +66,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.4'
go-version: '1.23.0'

- name: Go get
run: go get -t ./...
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.6-alpine3.20 as builder
FROM golang:1.23-alpine3.20 as builder

LABEL maintainer="Samuel Jirenius <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.6-alpine3.20 as builder
FROM golang:1.23-alpine3.20 as builder

LABEL maintainer="Samuel Jirenius <[email protected]>"

Expand Down

0 comments on commit f00f149

Please sign in to comment.