diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c372bb05..89ba42ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: branches: - - 'master' + - 'beta' tags: - 'v*' @@ -19,7 +19,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 - with: { go-version: '1.25' } + with: { go-version: '1.26' } - name: Build go2rtc_win64 env: { GOOS: windows, GOARCH: amd64 } diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d9e7e25..b81245f4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.24' + go-version: '1.26' - name: Build Go binary run: go build -ldflags "-s -w" -trimpath -o ./go2rtc diff --git a/docker/Dockerfile b/docker/Dockerfile index 2c095d48..1afb774b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,7 @@ # 0. Prepare images ARG PYTHON_VERSION="3.13" -ARG GO_VERSION="1.25" +ARG GO_VERSION="1.26" # 1. Build go2rtc binary diff --git a/docker/hardware.Dockerfile b/docker/hardware.Dockerfile index e972d59b..4bb14fc8 100644 --- a/docker/hardware.Dockerfile +++ b/docker/hardware.Dockerfile @@ -4,7 +4,7 @@ # only debian 13 (trixie) has latest ffmpeg # https://packages.debian.org/trixie/ffmpeg ARG DEBIAN_VERSION="trixie-slim" -ARG GO_VERSION="1.25-bookworm" +ARG GO_VERSION="1.26-bookworm" # 1. Build go2rtc binary diff --git a/docker/rockchip.Dockerfile b/docker/rockchip.Dockerfile index 12bfd002..c68eeefb 100644 --- a/docker/rockchip.Dockerfile +++ b/docker/rockchip.Dockerfile @@ -2,7 +2,7 @@ # 0. Prepare images ARG PYTHON_VERSION="3.13-slim-bookworm" -ARG GO_VERSION="1.25-bookworm" +ARG GO_VERSION="1.26-bookworm" # 1. Build go2rtc binary diff --git a/examples/mod_pinggy/go.mod b/examples/mod_pinggy/go.mod index 893e6011..0d48edf3 100644 --- a/examples/mod_pinggy/go.mod +++ b/examples/mod_pinggy/go.mod @@ -1,6 +1,6 @@ module pinggy -go 1.25 +go 1.26 require ( github.com/Pinggy-io/pinggy-go/pinggy v0.6.9 // indirect