Skip to content

Commit 356c4bc

Browse files
committed
chore(backend): update Go version
1 parent 5bfadfb commit 356c4bc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/go-mod-tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Go
2222
uses: actions/setup-go@v5
2323
with:
24-
go-version: 1.23.4
24+
go-version: 1.24.1
2525
cache: false
2626

2727
- name: Run go mod tidy

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.23.4
25+
go-version: 1.24.1
2626
cache: false
2727

2828
- name: Restore cache
@@ -62,7 +62,7 @@ jobs:
6262
- name: Set up Go
6363
uses: actions/setup-go@v5
6464
with:
65-
go-version: 1.23.4
65+
go-version: 1.24.1
6666
cache: false
6767

6868
- name: Restore cache
@@ -143,7 +143,7 @@ jobs:
143143
- name: Set up Go
144144
uses: actions/setup-go@v5
145145
with:
146-
go-version: 1.23.4
146+
go-version: 1.24.1
147147
cache: false
148148

149149
- name: Format Go code
@@ -299,7 +299,7 @@ jobs:
299299
- name: Set up Go
300300
uses: actions/setup-go@v5
301301
with:
302-
go-version: 1.23.4
302+
go-version: 1.24.1
303303
cache: false
304304

305305
- name: Restore cache
@@ -375,7 +375,7 @@ jobs:
375375
- name: Set up Go
376376
uses: actions/setup-go@v5
377377
with:
378-
go-version: 1.23.4
378+
go-version: 1.24.1
379379
cache: false
380380

381381
- name: Cache Go

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apk add make git
66
COPY ui /src/ui
77
RUN make -C /src/ui build
88

9-
FROM golang:1.23.4-alpine AS go-builder
9+
FROM golang:1.24.1-alpine AS go-builder
1010
RUN apk add make git
1111
COPY Makefile /src/Makefile
1212
COPY make /src/make

demo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN cd /src/ui && npm ci && touch node_modules/.install
66
COPY ui /src/ui
77
RUN make -C /src/ui build
88

9-
FROM golang:1.23.4-alpine AS go-builder
9+
FROM golang:1.24.1-alpine AS go-builder
1010
RUN apk add make git
1111
COPY Makefile /src/Makefile
1212
COPY make /src/make

0 commit comments

Comments
 (0)