Skip to content

Commit 401aca0

Browse files
authored
chore: build with go 1.22.5 (#62)
Signed-off-by: Mario Constanti <[email protected]>
1 parent 90024fd commit 401aca0

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
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.4'
24+
go-version: '1.22.5'
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.4
17+
- name: Set up Go 1.22.5
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.22.4'
20+
go-version: '1.22.5'
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.4'
25+
go-version: '1.22.5'
2626

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

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
go 1.22.4
5+
go 1.22.5
66

77
require (
88
github.com/cloudbase/garm-provider-common v0.1.2

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.4 AS build
3+
FROM golang:1.22.5 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.4-alpine AS build
3+
FROM golang:1.22.5-alpine AS build
44

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

0 commit comments

Comments
 (0)