Skip to content

Commit

Permalink
feat: upgrade go to 1.23
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <git@mattglei.ch>
  • Loading branch information
gleich committed Aug 18, 2024
1 parent b8f9c32 commit 6a40e77
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.6'
go-version: '1.23'
- run: 'go build ./cmd/lcp.go'
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.6'
go-version: '1.23'
- uses: golangci/golangci-lint-action@v6
with:
version: v1.59
Expand All @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.6'
go-version: '1.23'
- run: |
go mod tidy
git diff --exit-code go.mod
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22.6 AS build
FROM golang:1.23 AS build

WORKDIR /src
COPY . .
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 github.com/gleich/lcp-v2

go 1.22.6
go 1.23

require (
github.com/buckket/go-blurhash v1.1.0
Expand Down

0 comments on commit 6a40e77

Please sign in to comment.