File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
- golang 1.23.3
1
+ golang 1.24.0
Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## Unreleased
4
+
5
+ - Upgrades Dockerfile to use Go 1.24.0 (released Feb 11 2025).
6
+ (https://github.com/sourcegraph/scip-go/pull/146 )
7
+
3
8
## v0.1.22
4
9
5
10
- Fixes a panic when using a custom GOPACKAGESDRIVER along
Original file line number Diff line number Diff line change 15
15
# <other stuff to ignore>
16
16
# And use this digest in FROM
17
17
18
- ARG base_sha=73f06be4578c9987ce560087e2e2ea6485fb605e3910542cadd8fa09fc5f3e31
18
+ ARG base_sha=2b1cbf278ce05a2a310a3d695ebb176420117a8cfcfcc4e5e68a1bef5f6354da
19
19
20
- FROM golang:1.23.3 @sha256:${base_sha} as builder
20
+ FROM golang:1.24.0 @sha256:${base_sha} AS builder
21
21
22
22
COPY . /sources
23
23
WORKDIR /sources
24
24
RUN go build -o scip-go ./cmd/scip-go
25
25
26
26
# Keep in sync with builder image
27
- FROM golang:1.23.3 @sha256:${base_sha} as final
27
+ FROM golang:1.24.0 @sha256:${base_sha} AS final
28
28
29
29
COPY --from=builder /sources/scip-go /usr/bin/
30
30
CMD ["scip-go" ]
Original file line number Diff line number Diff line change 1
1
module github.com/sourcegraph/scip-go
2
2
3
- go 1.23.3
3
+ go 1.24.0
4
4
5
5
require (
6
6
github.com/charmbracelet/log v0.4.0
Original file line number Diff line number Diff line change 1
1
// THIS FILE IS GENERATED. SEE ./scripts/gen_std_lib.sh
2
- // Generated by: go version go1.23.3 darwin/arm64
2
+ // Generated by: go version go1.24.0 darwin/arm64
3
3
package loader
4
4
5
5
var contained = struct {}{}
@@ -55,4 +55,5 @@ var stdPackages = map[string]struct{}{
55
55
"unique" : contained ,
56
56
"unsafe" : contained ,
57
57
"vendor" : contained ,
58
+ "weak" : contained ,
58
59
}
You can’t perform that action at this time.
0 commit comments