Skip to content

Commit 2094d3f

Browse files
committed
ci: bump Go toolchain to 1.25 after x/net dependency update
Dependabot raised go.mod to go 1.25.0; align CI, Docker, and local build scripts so App Builder no longer fails with GOTOOLCHAIN=local. Bump version to 1.5.20.
1 parent 3e38666 commit 2094d3f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Go
2626
uses: actions/setup-go@v3
2727
with:
28-
go-version: 1.24.5
28+
go-version: 1.25
2929

3030
- name: Build Frontend
3131
if: github.event_name != 'pull_request'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUN apk add git && git clone https://github.com/sipcapture/homer-ui /app
44
WORKDIR /app
55
RUN npm install && npm install -g @angular/cli && npm run build
66

7-
FROM golang:alpine AS webapi
7+
FROM golang:1.25-alpine AS webapi
88
ENV BUILD=20220211-001
99
RUN apk --update add git make
1010
COPY . /homer-app

scripts/build_binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if [ "$CONT" = "y" ]; then
1313
docker run --rm \
1414
-v $PWD:/app \
1515
-e GOOS=${GOOS} \
16-
golang:1.24.5 \
16+
golang:1.25 \
1717
bash -c "cd /app && make modules && make all"
1818
else
1919
echo "Exiting..."

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
// VERSION
4-
var VERSION_APPLICATION = "1.5.19"
4+
var VERSION_APPLICATION = "1.5.20"
55

66
// NAME
77
var NAME_APPLICATION = "homer-app"

0 commit comments

Comments
 (0)