Skip to content

Commit bbf3ee0

Browse files
authored
Merge pull request #1361 from threefoldtech/development-update-go-version
update go version to v1.23 and zosbase to 0.1.7
2 parents cc1d276 + 058d05d commit bbf3ee0

File tree

42 files changed

+710
-423
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+710
-423
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: 1.21
39+
go-version: 1.23
4040

4141
- name: Build
4242
run: make build

.github/workflows/clean_test_account.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.21"
24+
go-version: "1.23"
2525
id: go
2626

2727
- name: Check out code into the Go module directory

.github/workflows/grid-client-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: "1.21"
23+
go-version: "1.23"
2424
id: go
2525

2626
- name: Generate tests
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Go
5555
uses: actions/setup-go@v5
5656
with:
57-
go-version: "1.21"
57+
go-version: "1.23"
5858
id: go
5959

6060
- name: Check out code into the Go module directory
@@ -94,7 +94,7 @@ jobs:
9494
- name: Set up Go
9595
uses: actions/setup-go@v5
9696
with:
97-
go-version: "1.21"
97+
go-version: "1.23"
9898
id: go
9999

100100
- name: Check out code into the Go module directory
@@ -134,7 +134,7 @@ jobs:
134134
- name: Set up Go
135135
uses: actions/setup-go@v5
136136
with:
137-
go-version: "1.21"
137+
go-version: "1.23"
138138
id: go
139139

140140
- name: Check out code into the Go module directory
@@ -174,7 +174,7 @@ jobs:
174174
- name: Set up Go
175175
uses: actions/setup-go@v5
176176
with:
177-
go-version: "1.21"
177+
go-version: "1.23"
178178
id: go
179179

180180
- name: Check out code into the Go module directory

.github/workflows/grid-proxy-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Go
3535
uses: actions/setup-go@v5
3636
with:
37-
go-version: 1.21
37+
go-version: 1.23
3838

3939
- name: Build
4040
run: |

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.21
18+
go-version: 1.23
1919

2020
- name: Run golangci-lint
2121
uses: golangci/golangci-lint-action@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: 1.21
22+
go-version: 1.23
2323

2424
- name: Run GoReleaser
2525
uses: goreleaser/goreleaser-action@v6.3.0

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Go
1212
uses: actions/setup-go@v5
1313
with:
14-
go-version: "1.21"
14+
go-version: "1.23"
1515

1616
- name: Check out code into the Go module directory
1717
uses: actions/checkout@v4

.github/workflows/tfrobot_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: "1.21"
22+
go-version: "1.23"
2323
id: go
2424

2525
- name: Check out code into the Go module directory

\

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
FROM golang:1.23-alpine as builder
2+
3+
WORKDIR /src/rmb-sdk-go
4+
5+
COPY /rmb-sdk-go .
6+
7+
WORKDIR /src/grid-client
8+
9+
COPY /grid-client .
10+
11+
WORKDIR /src/grid-proxy
12+
13+
COPY /grid-proxy .
14+
15+
WORKDIR /src/grid-cli
16+
17+
COPY /grid-cli .
18+
19+
RUN go build -o bin/grid-cli main.go
20+
21+
FROM alpine:3.19
22+
23+
WORKDIR /app
24+
25+
COPY --from=builder /src/grid-cli/bin/grid-cli .
26+
27+
ENTRYPOINT [ "./grid-cli" ]

activation-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21-alpine as builder
1+
FROM golang:1.23-alpine as builder
22

33
WORKDIR /src/activation-service
44

0 commit comments

Comments
 (0)