Skip to content

Commit 7fa2fdb

Browse files
committed
Update Go to 1.24.3
Signed-off-by: Remy Suen <[email protected]>
1 parent 7642d50 commit 7fa2fdb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: "1.23.8"
25+
go-version: "1.24.3"
2626

2727
- uses: golangci/golangci-lint-action@v6
2828
with:
@@ -67,7 +67,7 @@ jobs:
6767

6868
- uses: actions/setup-go@v5
6969
with:
70-
go-version: "1.23.8"
70+
go-version: "1.24.3"
7171

7272
- uses: actions/setup-node@v4
7373
with:
@@ -114,7 +114,7 @@ jobs:
114114

115115
- uses: actions/setup-go@v5
116116
with:
117-
go-version: "1.23.8"
117+
go-version: "1.24.3"
118118

119119
- name: Build for ${{ matrix.os }}-${{ matrix.arch }}
120120
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.8-alpine3.21 AS base
1+
FROM golang:1.24.3-alpine3.21 AS base
22
WORKDIR /build
33
RUN apk update && apk upgrade && apk add --no-cache ca-certificates go make && update-ca-certificates
44
COPY . .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The Docker Language Server relies on some features that are dependent on [Buildx
3535

3636
## Installing
3737

38-
Ensure you have Go 1.23 or greater installed, check out this repository and then run `make install`. Alternatively, if you have Go installed then you can run `go install github.com/docker/docker-language-server/cmd/docker-language-server@latest` to get the latest version.
38+
Ensure you have Go 1.24 or greater installed, check out this repository and then run `make install`. Alternatively, if you have Go installed then you can run `go install github.com/docker/docker-language-server/cmd/docker-language-server@latest` to get the latest version.
3939

4040
## Development
4141

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/docker/docker-language-server
22

3-
go 1.23.8
3+
go 1.24.3
44

55
require (
66
github.com/bep/debounce v1.2.1

0 commit comments

Comments
 (0)