Skip to content

Commit

Permalink
chore: update go version in ci and docker
Browse files Browse the repository at this point in the history
  • Loading branch information
github-tijlxyz committed Sep 12, 2024
1 parent b3e3f1a commit 0bd9fba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./...
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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
WORKDIR /app
COPY . .
RUN go build -o khatru-invite .
Expand Down

0 comments on commit 0bd9fba

Please sign in to comment.