diff --git a/Dockerfile b/Dockerfile index c01ec25..a3581dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM --platform=$BUILDPLATFORM golang:1.26.5-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.26.6-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 d25eaa5..3af68d0 100644 --- a/docker-compose.ci.yml +++ b/docker-compose.ci.yml @@ -35,7 +35,7 @@ services: start_period: 3s spotify-mock: - image: golang:1.26.5-alpine + image: golang:1.26.6-alpine container_name: spotify-mock working_dir: /app volumes: @@ -53,7 +53,7 @@ services: start_period: 3s amazon-mock: - image: golang:1.26.5-alpine + image: golang:1.26.6-alpine container_name: amazon-mock working_dir: /app volumes: @@ -71,7 +71,7 @@ services: start_period: 3s tunein-mock: - image: golang:1.26.5-alpine + image: golang:1.26.6-alpine container_name: tunein-mock working_dir: /app volumes: diff --git a/examples/navigation-station-demo/go.mod b/examples/navigation-station-demo/go.mod index 98544bf..fafd269 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.5 +go 1.26.6 -require github.com/gesellix/bose-soundtouch v0.118.0 +require github.com/gesellix/bose-soundtouch v0.123.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/examples/preset-management/go.mod b/examples/preset-management/go.mod index e981d3e..38ee4e6 100644 --- a/examples/preset-management/go.mod +++ b/examples/preset-management/go.mod @@ -1,8 +1,8 @@ module preset-management-example -go 1.26.5 +go 1.26.6 -require github.com/gesellix/bose-soundtouch v0.118.0 +require github.com/gesellix/bose-soundtouch v0.123.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/go.mod b/go.mod index e29a6ea..7274ffe 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gesellix/bose-soundtouch -go 1.26.5 +go 1.26.6 require ( filippo.io/age v1.3.1