Skip to content

Commit

Permalink
xbump go version (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhny authored Nov 4, 2024
1 parent 4a89a12 commit 373b5a1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Golang environment
uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.23"
- name: Log in to the Container registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '>=1.21.0'
go-version: '>=1.23.2'
check-latest: true
- uses: actions/checkout@v4
- run: go mod tidy && git diff --exit-code go.mod go.sum
build:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '1.21' ]
version: [ '1.23' ]
name: Go ${{ matrix.version }}
steps:
- uses: actions/setup-go@v5
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.21 as builder
FROM golang:1.23 as builder
RUN adduser -u 10001 scratchuser

FROM scratch
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module kartverket.no/smseagle-proxy

go 1.21.0
go 1.23.2

require (
github.com/go-playground/validator/v10 v10.22.0
Expand Down
2 changes: 1 addition & 1 deletion local_testing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21
FROM golang:1.23

WORKDIR /app
COPY go.mod go.sum ./
Expand Down

0 comments on commit 373b5a1

Please sign in to comment.