Update go build version to 1.24

This commit is contained in:
Alex X
2025-02-27 21:05:10 +03:00
parent a6c22cadb8
commit 8cd1ab5c8f
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: { go-version: '1.22' } with: { go-version: '1.24' }
- name: Build go2rtc_win64 - name: Build go2rtc_win64
env: { GOOS: windows, GOARCH: amd64 } env: { GOOS: windows, GOARCH: amd64 }
+1 -1
View File
@@ -26,7 +26,7 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '1.22' go-version: '1.24'
- name: Build Go binary - name: Build Go binary
run: go build -ldflags "-s -w" -trimpath -o ./go2rtc run: go build -ldflags "-s -w" -trimpath -o ./go2rtc
+1 -1
View File
@@ -2,7 +2,7 @@
# 0. Prepare images # 0. Prepare images
ARG PYTHON_VERSION="3.11" ARG PYTHON_VERSION="3.11"
ARG GO_VERSION="1.22" ARG GO_VERSION="1.24"
# 1. Download ngrok binary (for support arm/v6) # 1. Download ngrok binary (for support arm/v6)
+1 -1
View File
@@ -4,7 +4,7 @@
# only debian 13 (trixie) has latest ffmpeg # only debian 13 (trixie) has latest ffmpeg
# https://packages.debian.org/trixie/ffmpeg # https://packages.debian.org/trixie/ffmpeg
ARG DEBIAN_VERSION="trixie-slim" ARG DEBIAN_VERSION="trixie-slim"
ARG GO_VERSION="1.22-bookworm" ARG GO_VERSION="1.24-bookworm"
ARG NGROK_VERSION="3" ARG NGROK_VERSION="3"
FROM debian:${DEBIAN_VERSION} AS base FROM debian:${DEBIAN_VERSION} AS base