[build] upgrade Go to 1.23

This commit is contained in:
Aleksandr Soloshenko 2025-03-13 09:25:28 +07:00 committed by Aleksandr
parent fceb298744
commit 70089b7baf
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Building the binary of the App
FROM golang:1.22-alpine AS build
FROM golang:1.23-alpine AS build
ARG APP
ARG APP_VERSION=1.0.0

View File

@ -1,4 +1,4 @@
FROM golang:1.20-alpine
FROM golang:1.23-alpine
ENV GO111MODULE="on"
ENV GOOS="linux"

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/android-sms-gateway/server
go 1.22.0
go 1.23
require (
firebase.google.com/go/v4 v4.12.1

View File

@ -1,6 +1,6 @@
module github.com/android-sms-gateway/server/test/e2e
go 1.22.0
go 1.23
require github.com/go-resty/resty/v2 v2.16.2