Skip to content

Commit 980e825

Browse files
committed
chore: bump go to 1.25.5
1 parent 1914292 commit 980e825

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/build_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v4
2020
with:
21-
go-version: '1.22.2'
21+
go-version: '1.25'
2222

2323
- name: Install Linux dependencies
2424
if: runner.os == 'Linux'

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM alpine:3.20 AS build
1+
FROM alpine:3.23 AS build
22

3-
RUN apk -U --no-cache add go alsa-lib-dev libogg-dev libvorbis-dev flac-dev gcc musl-dev
3+
RUN apk update && apk -U --no-cache add go alsa-lib-dev libogg-dev libvorbis-dev flac-dev gcc musl-dev
44

55
WORKDIR /src
66

@@ -10,9 +10,9 @@ RUN go mod download
1010
COPY . .
1111
RUN CGO_ENABLED=1 go build -v ./cmd/daemon
1212

13-
FROM alpine:3.20
13+
FROM alpine:3.23
1414

15-
RUN apk -U --no-cache add libpulse avahi libgcc gcompat alsa-lib
15+
RUN apk update && apk -U --no-cache add libpulse avahi libgcc gcompat alsa-lib
1616

1717
COPY --from=build /src/daemon /usr/bin/go-librespot
1818

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ brew install go-librespot
3939

4040
To build from source the following prerequisites are necessary:
4141

42-
- Go 1.22 or higher
42+
- Go 1.25 or higher
4343
- Libraries: `libogg`, `libvorbis`, `flac`, `libasound2`
4444

4545
To install Go, download it from the [Go website](https://go.dev/dl/).

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/devgianlu/go-librespot
22

3-
go 1.22.2
3+
go 1.25
4+
5+
toolchain go1.25.5
46

57
require (
68
github.com/cenkalti/backoff/v4 v4.2.1

0 commit comments

Comments
 (0)