Skip to content

Commit ff49777

Browse files
authored
chore: build with go 1.23.0 (#88)
bump go from `1.22.5` to `1.23.0`
1 parent fdc5f9c commit ff49777

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: '1.22.5'
24+
go-version: '1.23.0'
2525

2626
- name: make build
2727
run: make build

.github/workflows/foss.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
name: foss-scan
1515
runs-on: ubuntu-latest
1616
steps:
17-
- name: Set up Go 1.22.5
17+
- name: Set up Go 1.23.0
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.22.5'
20+
go-version: '1.23.0'
2121
id: go
2222

2323
- name: Checkout code

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- run: git fetch --force --tags
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: '1.22.5'
25+
go-version: '1.23.0'
2626

2727
# - name: Synopsys Detect
2828
# run: |

go.mod

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
module github.com/mercedes-benz/garm-provider-k8s
44

5-
go 1.22.5
6-
toolchain go1.23.7
5+
go 1.23.0
6+
7+
toolchain go1.24.1
78

89
require (
910
github.com/cloudbase/garm-provider-common v0.1.3

hack/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: MIT
22

3-
FROM golang:1.22.5 AS build
3+
FROM golang:1.23.0 AS build
44

55
ARG garm_repo=https://github.com/cloudbase/garm
66
ARG garm_repo_ref=v0.1.4

hack/Dockerfile.debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: MIT
22

3-
FROM golang:1.22.5-alpine AS build
3+
FROM golang:1.23.0-alpine AS build
44

55
ARG garm_repo=https://github.com/cloudbase/garm
66
ARG garm_repo_ref=main

0 commit comments

Comments
 (0)