File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed 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=2b1cbf278ce05a2a310a3d695ebb176420117a8cfcfcc4e5e68a1bef5f6354da
18
+ ARG base_sha=39d9e7d9c5d9c9e4baf0d8fff579f06d5032c0f4425cdec9e86732e8e4e374dc
19
19
20
- FROM golang:1.24.0 @sha256:${base_sha} AS builder
20
+ FROM golang:1.24.3 @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.24.0 @sha256:${base_sha} AS final
27
+ FROM golang:1.24.3 @sha256:${base_sha} AS final
28
28
29
29
COPY --from=builder /sources/scip-go /usr/bin/
30
+ ENV GOTOOLCHAIN=auto
30
31
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.24.0
3
+ go 1.24.3
4
4
5
5
require (
6
6
github.com/charmbracelet/log v0.4.0
You can’t perform that action at this time.
0 commit comments