File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1818
1919 steps :
2020 - name : Checkout repository
21- uses : actions/checkout@v4
21+ uses : actions/checkout@v5
2222
2323 # Login against a Docker registry except on PR
2424 # https://github.com/docker/login-action
Original file line number Diff line number Diff line change @@ -19,17 +19,17 @@ jobs:
1919 check :
2020 runs-on : ubuntu-latest
2121 steps :
22- - uses : actions/checkout@v4
22+ - uses : actions/checkout@v5
2323
2424 - name : Set up Go
25- uses : actions/setup-go@v4
25+ uses : actions/setup-go@v6
2626 with :
27- go-version : ' 1.23.3 '
27+ go-version : ' 1.24.7 '
2828
2929 - name : Lint
3030 uses : golangci/golangci-lint-action@v6
3131 with :
32- version : v1.61
32+ version : v1.64.2
3333 args : -v --timeout 5m
3434 skip-cache : true
3535
@@ -44,12 +44,12 @@ jobs:
4444 test :
4545 runs-on : ubuntu-latest
4646 steps :
47- - uses : actions/checkout@v4
47+ - uses : actions/checkout@v5
4848
4949 - name : Set up Go
50- uses : actions/setup-go@v4
50+ uses : actions/setup-go@v6
5151 with :
52- go-version : ' 1.23.3 '
52+ go-version : ' 1.24.7 '
5353
5454 - name : Test
5555 run : go test -v -coverpkg=./... -coverprofile=coverage.out -covermode=atomic ./...
@@ -65,12 +65,12 @@ jobs:
6565 build :
6666 runs-on : ubuntu-latest
6767 steps :
68- - uses : actions/checkout@v4
68+ - uses : actions/checkout@v5
6969
7070 - name : Set up Go
71- uses : actions/setup-go@v4
71+ uses : actions/setup-go@v6
7272 with :
73- go-version : ' 1.23.3 '
73+ go-version : ' 1.24.7 '
7474
7575 - name : Install Protoc
7676 run : |
Original file line number Diff line number Diff line change 88
99 steps :
1010 - name : Checkout
11- uses : actions/checkout@v4
11+ uses : actions/checkout@v5
1212
1313 - name : Set up Helm
1414 uses : azure/setup-helm@v3
Original file line number Diff line number Diff line change 1- FROM golang:1.23.3 AS builder
1+ FROM golang:1.24.7 AS builder
22
33WORKDIR /go/src/github.com/NVIDIA/topograph
44COPY . .
Original file line number Diff line number Diff line change 11module github.com/NVIDIA/topograph
22
3- go 1.23.3
3+ go 1.24.7
44
55require (
66 cloud.google.com/go/compute v1.38.0
You can’t perform that action at this time.
0 commit comments