chore: update go version in ci and docker

This commit is contained in:
tijl 2024-09-12 13:50:53 +02:00
parent b3e3f1a67d
commit 0bd9fba22b
No known key found for this signature in database
GPG Key ID: 2EB6AC84AFE26CD6
3 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.23'
- name: Build
run: go build -v ./...

View File

@ -14,8 +14,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, freebsd, darwin, windows]
goarch: [amd64, arm64]
goos: [linux]
goarch: [amd64]
exclude:
- goarch: arm64
goos: windows

View File

@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.23 AS builder
WORKDIR /app
COPY . .
RUN go build -o khatru-invite .