File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 5
5
name : build
6
6
strategy :
7
7
matrix :
8
- go-version : [1.21 .x]
8
+ go-version : [1.22 .x]
9
9
goarch : [amd64]
10
10
os : [ubuntu-latest]
11
11
runs-on : ${{ matrix.os }}
32
32
- name : Set up Go
33
33
uses : actions/setup-go@v3
34
34
with :
35
- go-version : 1.21 .x
35
+ go-version : 1.22 .x
36
36
37
37
- name : Check out code into the Go module directory
38
38
uses : actions/checkout@v3
51
51
- name : Set up Go
52
52
uses : actions/setup-go@v3
53
53
with :
54
- go-version : 1.21 .x
54
+ go-version : 1.22 .x
55
55
56
56
- uses : actions/checkout@v3
57
57
74
74
- name : Set up Go
75
75
uses : actions/setup-go@v3
76
76
with :
77
- go-version : 1.21 .x
77
+ go-version : 1.22 .x
78
78
- uses : actions/checkout@v3
79
79
- name : golangci-lint
80
80
uses : golangci/golangci-lint-action@v3
@@ -113,7 +113,7 @@ jobs:
113
113
- name : Set up Go
114
114
uses : actions/setup-go@v3
115
115
with :
116
- go-version : 1.21 .x
116
+ go-version : 1.22 .x
117
117
118
118
# if this fails, run go mod tidy
119
119
- name : Check if module files are consistent with code
Original file line number Diff line number Diff line change 1
1
module github.com/k8snetworkplumbingwg/sriov-network-device-plugin
2
2
3
- go 1.21
3
+ go 1.22
4
4
5
5
require (
6
6
github.com/Mellanox/rdmamap v1.1.0
Original file line number Diff line number Diff line change 1
- FROM golang:1.21 -alpine as builder
1
+ FROM golang:1.22 -alpine as builder
2
2
3
3
COPY . /usr/src/sriov-network-device-plugin
4
4
You can’t perform that action at this time.
0 commit comments