diff --git a/Dockerfile b/Dockerfile index c07a897..0d46ed3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM --platform=$BUILDPLATFORM golang:1.26.2-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.26.3-alpine AS builder # Declare automatic platform ARGs to make them available in build stage # See https://docs.docker.com/reference/dockerfile#automatic-platform-args-in-the-global-scope diff --git a/docker-compose.ci.yml b/docker-compose.ci.yml index 826b50e..c342443 100644 --- a/docker-compose.ci.yml +++ b/docker-compose.ci.yml @@ -18,7 +18,7 @@ services: - AMAZON_PROFILE_URL=http://amazon-mock:8080/user/profile spotify-mock: - image: golang:1.26.2-alpine + image: golang:1.26.3-alpine container_name: spotify-mock working_dir: /app volumes: @@ -30,7 +30,7 @@ services: - soundtouch-test-net amazon-mock: - image: golang:1.26.2-alpine + image: golang:1.26.3-alpine container_name: amazon-mock working_dir: /app volumes: diff --git a/examples/navigation-station-demo/go.mod b/examples/navigation-station-demo/go.mod index 68592ea..0a4ae0a 100644 --- a/examples/navigation-station-demo/go.mod +++ b/examples/navigation-station-demo/go.mod @@ -1,8 +1,8 @@ module navigation-station-demo -go 1.26.2 +go 1.26.3 -require github.com/gesellix/bose-soundtouch v0.57.0 +require github.com/gesellix/bose-soundtouch v0.71.2 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/examples/preset-management/go.mod b/examples/preset-management/go.mod index 0adbd06..4371dc5 100644 --- a/examples/preset-management/go.mod +++ b/examples/preset-management/go.mod @@ -1,8 +1,8 @@ module preset-management-example -go 1.26.2 +go 1.26.3 -require github.com/gesellix/bose-soundtouch v0.57.0 +require github.com/gesellix/bose-soundtouch v0.71.2 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/go.mod b/go.mod index 6d6c784..5c6656d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gesellix/bose-soundtouch -go 1.26.2 +go 1.26.3 require ( github.com/go-chi/chi/v5 v5.2.5