Skip to content

Commit cd03d6f

Browse files
authored
Merge pull request #33 from tokenetes/update-go-version
updated Go version 1.24
2 parents da1ec3a + 3904d33 commit cd03d6f

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/gateway-lint.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.22.0'
24+
go-version: '1.24.0'
2525

2626
- name: Install golangci-lint
2727
uses: golangci/golangci-lint-action@v4

.github/workflows/order-lint.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.22.0'
24+
go-version: '1.24.0'
2525

2626
- name: Install golangci-lint
2727
uses: golangci/golangci-lint-action@v4

.github/workflows/stocks-lint.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.22.0'
24+
go-version: '1.24.0'
2525

2626
- name: Install golangci-lint
2727
uses: golangci/golangci-lint-action@v4

gateway/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO: Use a multi-stage build process to reduce the final image size.
2-
FROM --platform=$BUILDPLATFORM golang:1.22.0 AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.24.0 AS builder
33

44
WORKDIR /app
55

order/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO: Use a multi-stage build process to reduce the final image size.
2-
FROM --platform=$BUILDPLATFORM golang:1.22.0 AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.24.0 AS builder
33

44
WORKDIR /app
55

order/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/SGNL-ai/TraTs-Demo-Svcs/order
22

3-
go 1.22.0
3+
go 1.24.0
44

55
require (
66
github.com/golang-jwt/jwt v3.2.2+incompatible

stocks/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO: Use a multi-stage build process to reduce the final image size.
2-
FROM --platform=$BUILDPLATFORM golang:1.22.0 AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.24.0 AS builder
33

44
WORKDIR /app
55

0 commit comments

Comments
 (0)