Skip to content

Commit a12f68a

Browse files
committed
Update Go and dependencies
1 parent 632ad12 commit a12f68a

File tree

7 files changed

+88
-86
lines changed

7 files changed

+88
-86
lines changed

.github/Dockerfile.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1.4
2-
FROM debian:bookworm-slim
2+
FROM debian:trixie-slim
33

44
# This Dockerfile is used by GitHub Actions to build the
55
# ghcr.io/digineo/texd:base image on a regular basis.

.github/Dockerfile.release

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1.4
2-
ARG GO_VERSION=1.24
2+
ARG GO_VERSION=1.26
33
ARG IS_RELEASE=0
4-
FROM golang:${GO_VERSION}-bookworm as builder
4+
FROM golang:${GO_VERSION}-trixie as builder
55

66
# This Dockerfile is used by GitHub Actions to build the
77
# ghcr.io/digineo/texd:latest image whenever there is a commit pushed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
options: [dev, release]
1515

1616
env:
17-
GO_VERSION: "1.24"
17+
GO_VERSION: "1.26"
1818

1919
jobs:
2020
goreleaser:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111

1212
env:
13-
GO_VERSION: "1.24"
13+
GO_VERSION: "1.26"
1414

1515
jobs:
1616
test:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ To run texd as Docker service, use this command:
8080
$ docker run --rm -t -p localhost:2201:2201 ghcr.io/digineo/texd:latest
8181
```
8282

83-
The image `ghcr.io/digineo/texd:latest` is based on Debian Bookworm with
83+
The image `ghcr.io/digineo/texd:latest` is based on Debian Trixie with
8484
some texlive packages installed from the Debian repositories (see this
8585
[`Dockerfile`](./.github/Dockerfile.base) for the current list). This also
8686
means that the contained TeX distribution is [TeXlive 2022][].

go.mod

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/digineo/texd
22

3-
go 1.24
3+
go 1.26
44

55
require (
66
github.com/bahlo/generic-list-go v0.2.0
@@ -13,7 +13,7 @@ require (
1313
github.com/oklog/ulid/v2 v2.1.1
1414
github.com/opencontainers/image-spec v1.1.1
1515
github.com/prometheus/client_golang v1.23.2
16-
github.com/spf13/afero v1.11.0
16+
github.com/spf13/afero v1.15.0
1717
github.com/spf13/pflag v1.0.10
1818
github.com/stretchr/testify v1.11.1
1919
github.com/thediveo/enumflag v0.10.1
@@ -30,37 +30,37 @@ require (
3030
github.com/containerd/log v0.1.0 // indirect
3131
github.com/davecgh/go-spew v1.1.1 // indirect
3232
github.com/distribution/reference v0.6.0 // indirect
33-
github.com/docker/go-connections v0.5.0 // indirect
33+
github.com/docker/go-connections v0.6.0 // indirect
3434
github.com/felixge/httpsnoop v1.0.4 // indirect
3535
github.com/go-logr/logr v1.4.3 // indirect
3636
github.com/go-logr/stdr v1.2.2 // indirect
3737
github.com/moby/docker-image-spec v1.3.1 // indirect
3838
github.com/moby/sys/atomicwriter v0.1.0 // indirect
39-
github.com/morikuni/aec v1.0.0 // indirect
39+
github.com/morikuni/aec v1.1.0 // indirect
4040
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4141
github.com/onsi/ginkgo v1.16.5 // indirect
42-
github.com/onsi/gomega v1.34.2 // indirect
42+
github.com/onsi/gomega v1.39.1 // indirect
4343
github.com/opencontainers/go-digest v1.0.0 // indirect
4444
github.com/pkg/errors v0.9.1 // indirect
4545
github.com/pmezard/go-difflib v1.0.0 // indirect
4646
github.com/prometheus/client_model v0.6.2 // indirect
47-
github.com/prometheus/common v0.66.1 // indirect
48-
github.com/prometheus/procfs v0.16.1 // indirect
49-
github.com/spf13/cobra v1.8.1 // indirect
50-
github.com/stretchr/objx v0.5.2 // indirect
51-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
52-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
53-
go.opentelemetry.io/otel v1.37.0 // indirect
54-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.30.0 // indirect
55-
go.opentelemetry.io/otel/metric v1.37.0 // indirect
56-
go.opentelemetry.io/otel/trace v1.37.0 // indirect
47+
github.com/prometheus/common v0.67.5 // indirect
48+
github.com/prometheus/procfs v0.20.1 // indirect
49+
github.com/spf13/cobra v1.10.2 // indirect
50+
github.com/stretchr/objx v0.5.3 // indirect
51+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
52+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
53+
go.opentelemetry.io/otel v1.42.0 // indirect
54+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.42.0 // indirect
55+
go.opentelemetry.io/otel/metric v1.42.0 // indirect
56+
go.opentelemetry.io/otel/trace v1.42.0 // indirect
5757
go.uber.org/multierr v1.11.0 // indirect
58-
go.yaml.in/yaml/v2 v2.4.2 // indirect
59-
golang.org/x/sys v0.35.0 // indirect
60-
golang.org/x/text v0.28.0 // indirect
61-
google.golang.org/protobuf v1.36.8 // indirect
58+
go.yaml.in/yaml/v2 v2.4.4 // indirect
59+
golang.org/x/sys v0.42.0 // indirect
60+
golang.org/x/text v0.35.0 // indirect
61+
google.golang.org/protobuf v1.36.11 // indirect
6262
gopkg.in/yaml.v3 v3.0.1 // indirect
63-
gotest.tools/v3 v3.5.1 // indirect
63+
gotest.tools/v3 v3.5.2 // indirect
6464
)
6565

6666
replace github.com/spf13/afero => github.com/digineo/afero v1.11.1-0.20240128222722-ade8094005cb

0 commit comments

Comments
 (0)