Skip to content

Commit 57bacea

Browse files
committed
chore: Bump dependencies and CI/CD configurations
Signed-off-by: Felicitas Pojtinger <[email protected]>
1 parent bd7d90a commit 57bacea

File tree

13 files changed

+143
-142
lines changed

13 files changed

+143
-142
lines changed

.github/workflows/docker.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,7 @@ jobs:
117117
if: startsWith(github.ref, 'refs/tags/v')
118118
working-directory: /tmp/digests
119119
run: |
120-
docker buildx imagetools create --tag "${{ steps.meta.outputs.tags }}"" $(printf '${{ matrix.target.image }}@sha256:%s ' *)
121-
120+
TAGS=$(echo "${{ steps.meta.outputs.tags }}" | tr '\n' ' ')
121+
for TAG in $TAGS; do
122+
docker buildx imagetools create --tag "$TAG" $(printf '${{ matrix.target.image }}@sha256:%s ' *);
123+
done

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# Build container
2-
FROM golang:bullseye AS build
2+
FROM golang:bookworm AS build
33

44
# Setup environment
55
RUN mkdir -p /data
66
WORKDIR /data
77

88
# Build the release
99
COPY . .
10-
RUN make
10+
RUN make build/weron
1111

1212
# Extract the release
1313
RUN mkdir -p /out
1414
RUN cp out/weron /out/weron
1515

1616
# Release container
17-
FROM debian:bullseye
17+
FROM debian:bookworm
1818

1919
# Add certificates
2020
RUN apt update

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ test:
3737

3838
# Benchmark
3939
benchmark:
40-
go test -timeout 3600s -bench=./... ./...
40+
go test -timeout 3600s -bench=. ./...
4141

4242
# Clean
4343
clean:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,6 +674,6 @@ Have any questions or need help? Chat with us [on Matrix](https://matrix.to/#/#w
674674
675675
## License
676676
677-
weron (c) 2024 Felicitas Pojtinger and contributors
677+
weron (c) 2025 Felicitas Pojtinger and contributors
678678
679679
SPDX-License-Identifier: AGPL-3.0

go.mod

Lines changed: 39 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/pojntfx/weron
22

3-
// +heroku goVersion go1.21.0
4-
go 1.21.0
3+
// +heroku goVersion go1.24.2
4+
go 1.24
55

6-
toolchain go1.22.6
6+
toolchain go1.24.2
77

88
require (
99
github.com/friendsofgo/errors v0.9.2
@@ -14,74 +14,71 @@ require (
1414
github.com/json-iterator/go v1.1.12
1515
github.com/lib/pq v1.10.9
1616
github.com/mitchellh/mapstructure v1.5.0
17-
github.com/pion/webrtc/v3 v3.3.0
17+
github.com/pion/webrtc/v3 v3.3.5
1818
github.com/pojntfx/go-auth-utils v0.1.0
19-
github.com/rs/zerolog v1.33.0
20-
github.com/rubenv/sql-migrate v1.7.0
19+
github.com/rs/zerolog v1.34.0
20+
github.com/rubenv/sql-migrate v1.8.0
2121
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
22-
github.com/spf13/cobra v1.8.1
23-
github.com/spf13/pflag v1.0.5
24-
github.com/spf13/viper v1.19.0
22+
github.com/spf13/cobra v1.9.1
23+
github.com/spf13/pflag v1.0.6
24+
github.com/spf13/viper v1.20.1
2525
github.com/teivah/broadcast v0.1.0
2626
github.com/vishvananda/netlink v1.3.0
2727
github.com/volatiletech/null/v8 v8.1.2
28-
github.com/volatiletech/sqlboiler/v4 v4.16.2
29-
github.com/volatiletech/strmangle v0.0.6
30-
golang.org/x/crypto v0.26.0
31-
golang.org/x/sync v0.8.0
28+
github.com/volatiletech/sqlboiler/v4 v4.18.0
29+
github.com/volatiletech/strmangle v0.0.8
30+
golang.org/x/crypto v0.37.0
31+
golang.org/x/sync v0.13.0
3232
)
3333

3434
require (
3535
github.com/cespare/xxhash/v2 v2.3.0 // indirect
36-
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
36+
github.com/coreos/go-oidc/v3 v3.14.1 // indirect
3737
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3838
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
39-
github.com/fsnotify/fsnotify v1.7.0 // indirect
39+
github.com/fsnotify/fsnotify v1.9.0 // indirect
4040
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
41-
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
41+
github.com/go-jose/go-jose/v4 v4.1.0 // indirect
42+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
4243
github.com/gofrs/uuid v4.4.0+incompatible // indirect
43-
github.com/hashicorp/hcl v1.0.0 // indirect
4444
github.com/inconshreveable/mousetrap v1.1.0 // indirect
45-
github.com/magiconair/properties v1.8.7 // indirect
46-
github.com/mattn/go-colorable v0.1.13 // indirect
45+
github.com/mattn/go-colorable v0.1.14 // indirect
4746
github.com/mattn/go-isatty v0.0.20 // indirect
4847
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4948
github.com/modern-go/reflect2 v1.0.2 // indirect
50-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
51-
github.com/pion/datachannel v1.5.9 // indirect
49+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
50+
github.com/pion/datachannel v1.5.10 // indirect
5251
github.com/pion/dtls/v2 v2.2.12 // indirect
53-
github.com/pion/ice/v2 v2.3.34 // indirect
54-
github.com/pion/interceptor v0.1.30 // indirect
55-
github.com/pion/logging v0.2.2 // indirect
52+
github.com/pion/ice/v2 v2.3.37 // indirect
53+
github.com/pion/interceptor v0.1.37 // indirect
54+
github.com/pion/logging v0.2.3 // indirect
5655
github.com/pion/mdns v0.0.12 // indirect
5756
github.com/pion/randutil v0.1.0 // indirect
58-
github.com/pion/rtcp v1.2.14 // indirect
59-
github.com/pion/rtp v1.8.9 // indirect
60-
github.com/pion/sctp v1.8.33 // indirect
61-
github.com/pion/sdp/v3 v3.0.9 // indirect
57+
github.com/pion/rtcp v1.2.15 // indirect
58+
github.com/pion/rtp v1.8.13 // indirect
59+
github.com/pion/sctp v1.8.38 // indirect
60+
github.com/pion/sdp/v3 v3.0.11 // indirect
6261
github.com/pion/srtp/v2 v2.0.20 // indirect
6362
github.com/pion/stun v0.6.1 // indirect
6463
github.com/pion/transport/v2 v2.2.10 // indirect
64+
github.com/pion/transport/v3 v3.0.7 // indirect
6565
github.com/pion/turn/v2 v2.1.6 // indirect
6666
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
67-
github.com/sagikazarmark/locafero v0.6.0 // indirect
68-
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
67+
github.com/sagikazarmark/locafero v0.9.0 // indirect
6968
github.com/sourcegraph/conc v0.3.0 // indirect
70-
github.com/spf13/afero v1.11.0 // indirect
71-
github.com/spf13/cast v1.7.0 // indirect
72-
github.com/stretchr/testify v1.9.0 // indirect
69+
github.com/spf13/afero v1.14.0 // indirect
70+
github.com/spf13/cast v1.7.1 // indirect
71+
github.com/stretchr/testify v1.10.0 // indirect
7372
github.com/subosito/gotenv v1.6.0 // indirect
74-
github.com/vishvananda/netns v0.0.4 // indirect
73+
github.com/vishvananda/netns v0.0.5 // indirect
7574
github.com/volatiletech/inflect v0.0.1 // indirect
7675
github.com/volatiletech/randomize v0.0.1 // indirect
77-
github.com/wlynxg/anet v0.0.4 // indirect
76+
github.com/wlynxg/anet v0.0.5 // indirect
7877
go.uber.org/multierr v1.11.0 // indirect
79-
golang.org/x/exp v0.0.0-20240823005443-9b4947da3948 // indirect
80-
golang.org/x/net v0.28.0 // indirect
81-
golang.org/x/oauth2 v0.22.0 // indirect
82-
golang.org/x/sys v0.24.0 // indirect
83-
golang.org/x/text v0.17.0 // indirect
84-
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
85-
gopkg.in/ini.v1 v1.67.0 // indirect
78+
golang.org/x/net v0.39.0 // indirect
79+
golang.org/x/oauth2 v0.29.0 // indirect
80+
golang.org/x/sys v0.32.0 // indirect
81+
golang.org/x/text v0.24.0 // indirect
82+
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
8683
gopkg.in/yaml.v3 v3.0.1 // indirect
8784
)

0 commit comments

Comments
 (0)