🧱 Chunk is a download manager for slow and unstable servers
0
fork

Configure Feed

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

Updates Go version

+6 -6
+1 -1
.github/workflows/gofmt.yaml
··· 7 7 - uses: actions/checkout@v4 8 8 - uses: WillAbides/setup-go-faster@v1.14.0 9 9 with: 10 - go-version: "1.24" 10 + go-version: "1.25" 11 11 - run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
+1 -1
.github/workflows/golint.yaml
··· 7 7 - uses: actions/checkout@v4 8 8 - uses: WillAbides/setup-go-faster@v1.14.0 9 9 with: 10 - go-version: "1.24.x" 10 + go-version: "1.25.x" 11 11 - uses: dominikh/staticcheck-action@v1.3.1
+1 -1
.github/workflows/tests.yaml
··· 6 6 fail-fast: false 7 7 matrix: 8 8 os: ["windows-latest", "ubuntu-latest", "macOS-latest"] 9 - go: ["1.23.x", "1.24.x"] 9 + go: ["1.24.x", "1.25.x"] 10 10 runs-on: ${{ matrix.os }} 11 11 steps: 12 12 - uses: actions/checkout@v4
+2 -2
Dockerfile
··· 1 - FROM golang:1.24-bullseye as build 1 + FROM golang:1.25-trixie as build 2 2 WORKDIR /chunk 3 3 COPY go.* . 4 4 RUN go mod download 5 5 COPY *.go . 6 6 RUN go build -o /usr/bin/chunk 7 7 8 - FROM debian:bullseye-slim 8 + FROM debian:trixie-slim 9 9 COPY --from=build /usr/bin/chunk /usr/bin/chunk 10 10 CMD ["chunk"]
+1 -1
go.mod
··· 1 1 module github.com/cuducos/chunk 2 2 3 - go 1.23 3 + go 1.25 4 4 5 5 require ( 6 6 github.com/avast/retry-go/v4 v4.7.0