chore(backend): update Go version

This commit is contained in:
Łukasz Mierzwa
2025-03-19 10:32:50 +00:00
committed by Łukasz Mierzwa
parent 5bfadfbd4b
commit 356c4bc35f
4 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
go-version: 1.24.1
cache: false
- name: Run go mod tidy

View File

@@ -22,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
go-version: 1.24.1
cache: false
- name: Restore cache
@@ -62,7 +62,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
go-version: 1.24.1
cache: false
- name: Restore cache
@@ -143,7 +143,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
go-version: 1.24.1
cache: false
- name: Format Go code
@@ -299,7 +299,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
go-version: 1.24.1
cache: false
- name: Restore cache
@@ -375,7 +375,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
go-version: 1.24.1
cache: false
- name: Cache Go

View File

@@ -6,7 +6,7 @@ RUN apk add make git
COPY ui /src/ui
RUN make -C /src/ui build
FROM golang:1.23.4-alpine AS go-builder
FROM golang:1.24.1-alpine AS go-builder
RUN apk add make git
COPY Makefile /src/Makefile
COPY make /src/make

View File

@@ -6,7 +6,7 @@ RUN cd /src/ui && npm ci && touch node_modules/.install
COPY ui /src/ui
RUN make -C /src/ui build
FROM golang:1.23.4-alpine AS go-builder
FROM golang:1.24.1-alpine AS go-builder
RUN apk add make git
COPY Makefile /src/Makefile
COPY make /src/make