Upgrade Go to 1.23.6 (#383)
Some checks failed
Checks / lint (push) Has been cancelled
Checks / test (push) Has been cancelled
Checks / generated (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled

* Upgrade go to 1.23.6
This commit is contained in:
mgdigital 2025-02-09 14:05:12 +00:00 committed by GitHub
parent 1b3ca02368
commit 8c4a5c3566
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View File

@ -77,7 +77,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: "^1.23.2"
go-version: "^1.23.6"
# - run: |
# echo "Run, Build Application using script"

View File

@ -26,7 +26,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23.2"
go-version: "1.23.6"
cache: true
- name: Run GoReleaser build

View File

@ -1,4 +1,4 @@
FROM golang:1.23.2-alpine3.20 AS build
FROM golang:1.23.6-alpine3.20 AS build
RUN apk --update add \
gcc \

View File

@ -1,5 +1,5 @@
# build app
FROM --platform=$BUILDPLATFORM golang:1.23.2-alpine3.20 AS app-builder
FROM --platform=$BUILDPLATFORM golang:1.23.6-alpine3.20 AS app-builder
RUN apk add --no-cache git tzdata
ENV SERVICE=bitmagnet

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/bitmagnet-io/bitmagnet
go 1.23.3
go 1.23.6
require (
github.com/99designs/gqlgen v0.17.64