fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

Use Go 1.21.2 (#653)

+8 -7
+1
.github/workflows/ci.yml
··· 3 3 branches: 4 4 - main 5 5 pull_request: 6 + workflow_dispatch: 6 7 name: CI 7 8 jobs: 8 9 test:
+1 -1
.tool-versions
··· 1 - golang 1.20.3 1 + golang 1.21.2
+4 -4
Dockerfile
··· 1 - FROM golang:1.20.3-alpine3.17 AS builder 1 + FROM golang:1.21.2-alpine3.18 AS builder 2 2 3 3 RUN apk add --no-cache ca-certificates 4 4 5 - ENV CGO_ENABLED=0 GO111MODULE=on 5 + ENV CGO_ENABLED=0 6 6 WORKDIR /go/src/github.com/sourcegraph/zoekt 7 7 8 8 # Cache dependencies ··· 13 13 ARG VERSION 14 14 RUN go install -ldflags "-X github.com/sourcegraph/zoekt.Version=$VERSION" ./cmd/... 15 15 16 - FROM rust:alpine3.17 AS rust-builder 16 + FROM rust:alpine3.18 AS rust-builder 17 17 18 18 RUN apk update --no-cache && apk upgrade --no-cache && \ 19 19 apk add --no-cache git wget musl-dev>=1.1.24-r10 build-base ··· 27 27 28 28 RUN cargo install --path sourcegraph/docker-images/syntax-highlighter --root /syntect_server --bin scip-ctags 29 29 30 - FROM alpine:3.17.3 AS zoekt 30 + FROM alpine:3.18 AS zoekt 31 31 32 32 RUN apk update --no-cache && apk upgrade --no-cache && \ 33 33 apk add --no-cache git ca-certificates bind-tools tini jansson wget
+1 -1
Dockerfile.indexserver
··· 1 - FROM alpine:3.17.3 1 + FROM alpine:3.18 2 2 3 3 RUN apk update --no-cache && apk upgrade --no-cache && \ 4 4 apk add --no-cache ca-certificates bind-tools tini 'git>=2.38.5-r0' jansson && \
+1 -1
Dockerfile.webserver
··· 1 - FROM alpine:3.17.3 1 + FROM alpine:3.18 2 2 3 3 RUN apk update --no-cache && apk upgrade --no-cache && \ 4 4 apk add --no-cache ca-certificates bind-tools tini