Skip to content

Commit e4e64a1

Browse files
author
Tobias Wellnitz, DH1TW
committed
updated dependencies and fixed macos builds (removed upx)
1 parent 6b53887 commit e4e64a1

4 files changed

Lines changed: 81 additions & 93 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ jobs:
196196
test -f ./remoteAudio && chmod +x ./remoteAudio #only on linux & darwin needed
197197
zip -j remoteAudio-${{ env.VERSION_TAG }}-${{ matrix.OS }}-${{ matrix.ARCH }}.zip ./*
198198
199-
- name: Sleep to avoid multiple releases with the same tag
199+
- name: Sleep a few seconds to avoid multiple releases with the same tag
200200
run: |
201-
RANDOM_DELAY=$(( ( RANDOM % 60 ) + 1 ))
201+
RANDOM_DELAY=$(( ( RANDOM % 120 ) + 1 ))
202202
sleep $RANDOM_DELAY
203203
204204
# Finally upload the artifact to the corresponding release

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dist:
2222
if [ "${GOOS}" = "windows" ]; \
2323
then upx remoteAudio.exe; \
2424
else \
25-
if [ "${GOOS}" = "darwin" ] && [ "${GOARCH}" = "arm64" ]; \
25+
if [ "${GOOS}" = "darwin" ]; \
2626
then true; \
2727
else upx remoteAudio; \
2828
fi \

go.mod

Lines changed: 24 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/dh1tw/remoteAudio
22

3-
go 1.23
3+
go 1.23.0
4+
45
toolchain go1.24.1
56

67
require (
@@ -18,69 +19,65 @@ require (
1819
github.com/gordonklaus/portaudio v0.0.0-20250206071425-98a94950218b
1920
github.com/gorilla/mux v1.8.1
2021
github.com/gorilla/websocket v1.5.3
21-
github.com/nats-io/nats.go v1.39.0
22+
github.com/nats-io/nats.go v1.41.2
2223
github.com/spf13/cobra v1.9.1
23-
github.com/spf13/viper v1.19.0
24-
google.golang.org/protobuf v1.36.5
24+
github.com/spf13/viper v1.20.1
25+
google.golang.org/protobuf v1.36.6
2526
gopkg.in/hraban/opus.v2 v2.0.0-20230925203106-0188a62cb302
2627
)
2728

2829
require (
2930
dario.cat/mergo v1.0.1 // indirect
3031
github.com/Microsoft/go-winio v0.6.2 // indirect
31-
github.com/ProtonMail/go-crypto v1.1.5 // indirect
32+
github.com/ProtonMail/go-crypto v1.2.0 // indirect
3233
github.com/bitly/go-simplejson v0.5.1 // indirect
33-
github.com/cloudflare/circl v1.6.0 // indirect
34+
github.com/cloudflare/circl v1.6.1 // indirect
3435
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
3536
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
3637
github.com/emirpasic/gods v1.18.1 // indirect
37-
github.com/fsnotify/fsnotify v1.8.0 // indirect
38+
github.com/fsnotify/fsnotify v1.9.0 // indirect
3839
github.com/go-audio/riff v1.0.0 // indirect
3940
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
4041
github.com/go-git/go-billy/v5 v5.6.2 // indirect
41-
github.com/go-git/go-git/v5 v5.13.2 // indirect
42+
github.com/go-git/go-git/v5 v5.16.0 // indirect
43+
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
4244
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
4345
github.com/google/uuid v1.6.0 // indirect
44-
github.com/hashicorp/hcl v1.0.0 // indirect
4546
github.com/imdario/mergo v0.3.16 // indirect
4647
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4748
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
4849
github.com/kevinburke/ssh_config v1.2.0 // indirect
49-
github.com/klauspost/compress v1.17.11 // indirect
50-
github.com/magiconair/properties v1.8.9 // indirect
51-
github.com/miekg/dns v1.1.63 // indirect
52-
github.com/mitchellh/mapstructure v1.5.0 // indirect
53-
github.com/nats-io/nkeys v0.4.10 // indirect
50+
github.com/klauspost/compress v1.18.0 // indirect
51+
github.com/miekg/dns v1.1.65 // indirect
52+
github.com/nats-io/nkeys v0.4.11 // indirect
5453
github.com/nats-io/nuid v1.0.1 // indirect
5554
github.com/nxadm/tail v1.4.11 // indirect
5655
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
5756
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
58-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
57+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
5958
github.com/pjbgf/sha1cd v0.3.2 // indirect
6059
github.com/pkg/errors v0.9.1 // indirect
6160
github.com/russross/blackfriday/v2 v2.1.0 // indirect
62-
github.com/sagikazarmark/locafero v0.7.0 // indirect
63-
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
61+
github.com/sagikazarmark/locafero v0.9.0 // indirect
6462
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
6563
github.com/skeema/knownhosts v1.3.1 // indirect
6664
github.com/sourcegraph/conc v0.3.0 // indirect
67-
github.com/spf13/afero v1.12.0 // indirect
65+
github.com/spf13/afero v1.14.0 // indirect
6866
github.com/spf13/cast v1.7.1 // indirect
6967
github.com/spf13/pflag v1.0.6 // indirect
7068
github.com/subosito/gotenv v1.6.0 // indirect
71-
github.com/urfave/cli/v2 v2.27.5 // indirect
69+
github.com/urfave/cli/v2 v2.27.6 // indirect
7270
github.com/xanzy/ssh-agent v0.3.3 // indirect
7371
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
7472
go.uber.org/multierr v1.11.0 // indirect
75-
golang.org/x/crypto v0.36.0 // indirect
73+
golang.org/x/crypto v0.37.0 // indirect
7674
golang.org/x/exp v0.0.0-20250215185904-eff6e970281f // indirect
77-
golang.org/x/mod v0.23.0 // indirect
78-
golang.org/x/net v0.38.0 // indirect
79-
golang.org/x/sync v0.12.0 // indirect
80-
golang.org/x/sys v0.31.0 // indirect
81-
golang.org/x/text v0.23.0 // indirect
82-
golang.org/x/tools v0.30.0 // indirect
83-
gopkg.in/ini.v1 v1.67.0 // indirect
75+
golang.org/x/mod v0.24.0 // indirect
76+
golang.org/x/net v0.39.0 // indirect
77+
golang.org/x/sync v0.13.0 // indirect
78+
golang.org/x/sys v0.32.0 // indirect
79+
golang.org/x/text v0.24.0 // indirect
80+
golang.org/x/tools v0.32.0 // indirect
8481
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
8582
gopkg.in/warnings.v0 v0.1.2 // indirect
8683
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)