diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index dc477391..e533458f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [ main ] + branches: [main] pull_request: - branches: [ main ] + branches: [main] jobs: container-job: @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: "1.22" + go-version: "1.23" - name: Build run: make build diff --git a/Dockerfile b/Dockerfile index 7a4fcaf2..4f0bcb1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-bookworm as builder +FROM golang:1.23-bookworm as builder LABEL stage=builder ENV REPO=thoas/picfit diff --git a/Dockerfile.build b/Dockerfile.build index 4cdb6e38..e2617e95 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,4 +1,4 @@ -FROM golang:1.22-bookworm +FROM golang:1.23-bookworm ADD . /go/src/github.com/thoas/picfit