Skip to content

Commit b5f4579

Browse files
committed
fix ga failures
1 parent 16ccb82 commit b5f4579

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/pr-check.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ jobs:
88
name: Lint
99
runs-on: ubuntu-24.04
1010
steps:
11-
- name: Setup up Go 1.x
11+
- name: Setup up Go 1.23
1212
uses: actions/setup-go@v5
1313
with:
14-
go-version: "^1.15"
14+
go-version: "1.23"
1515
- name: Check out code
1616
uses: actions/checkout@v4
1717
- name: golangci-lint
1818
uses: golangci/golangci-lint-action@v6
1919
with:
20-
version: v1.58.2
20+
version: v1.63.4
2121
args: --timeout=5m
2222

2323
build:
2424
name: Test & Build
2525
runs-on: ubuntu-24.04
2626
steps:
27-
- name: Setup up Go 1.x
27+
- name: Setup up Go 1.23
2828
uses: actions/setup-go@v5
2929
with:
30-
go-version: "^1.15"
30+
go-version: "1.23"
3131

3232
- name: Check out code
3333
uses: actions/checkout@v4

pkg/driver/controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ func (cs *controllerServer) CreateSnapshot(ctx context.Context, req *csi.CreateS
336336
// Error with CloudStack
337337
return nil, status.Errorf(codes.Internal, "Error %v", err)
338338
}
339-
klog.V(4).Infof("CreateSnapshot of volume: %s", volume)
339+
klog.V(4).Infof("CreateSnapshot of volume: %s", volume.ID)
340340
snapshot, err := cs.connector.CreateSnapshot(ctx, volume.ID)
341341
if err != nil {
342342
return nil, status.Errorf(codes.Internal, "Failed to create snapshot for volume %s: %v", volume.ID, err.Error())

0 commit comments

Comments
 (0)