Skip to content

Commit 96de652

Browse files
committed
Update: Liqo version 1.0.0 from Liqo version 1.0.0-rc3
1 parent f83ba1f commit 96de652

File tree

108 files changed

+190
-168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+190
-168
lines changed

.github/workflows/check_artifacts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Go
2121
uses: actions/setup-go@v4
2222
with:
23-
go-version: '1.21'
23+
go-version: '1.24'
2424

2525
- name: Run the automatic generation
2626
working-directory: ./

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
- name: Setup Go
1818
uses: actions/setup-go@v4
1919
with:
20-
go-version: "1.23"
20+
go-version: "1.24"
2121
cache: false
2222

2323
- name: golangci-lint
2424
uses: golangci/golangci-lint-action@v3.7.0
2525
with:
2626
only-new-issues: true
27-
version: v1.60
27+
version: v1.64.2
2828
args: --timeout=900s
2929

3030
gomodtidy:
@@ -42,7 +42,7 @@ jobs:
4242
- name: Setup Go
4343
uses: actions/setup-go@v4
4444
with:
45-
go-version: "1.21"
45+
go-version: "1.24"
4646

4747
- name: Execute go mod tidy and check the outcome
4848
working-directory: ./

.golangci.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
run:
22
timeout: 10m
3-
skip-files:
4-
- "zz_generated.*.go"
5-
- "consts.go"
6-
skip-dirs:
7-
- "pkg/client"
3+
84

95
linters-settings:
106
exhaustive:
@@ -59,7 +55,7 @@ linters-settings:
5955
goimports:
6056
local-prefixes: github.com/fluidos-project/node
6157
govet:
62-
check-shadowing: true
58+
shadow: true
6359
misspell:
6460
locale: US
6561
ignore-words:
@@ -84,15 +80,16 @@ linters:
8480
- errcheck
8581
- errorlint
8682
- exhaustive
87-
- exportloopref
83+
# - exportloopref
84+
- copyloopvar
8885
# - funlen
8986
# - gochecknoglobals
9087
# - gochecknoinits
9188
# - gocognit
9289
- gci
9390
- goconst
9491
- gocritic
95-
- gocyclo
92+
# - gocyclo
9693
- godot
9794
# - godox
9895
# - goerr113
@@ -128,6 +125,11 @@ linters:
128125

129126
issues:
130127
#fix: true
128+
exclude-files:
129+
- "zz_generated.*.go"
130+
- "consts.go"
131+
exclude-dirs:
132+
- "pkg/client"
131133

132134
max-issues-per-linter: 0
133135
max-same-issues: 0

apis/advertisement/v1alpha1/discovery_status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024 FLUIDOS Project
1+
// Copyright 2022-2025 FLUIDOS Project
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

apis/advertisement/v1alpha1/discovery_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024 FLUIDOS Project
1+
// Copyright 2022-2025 FLUIDOS Project
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

apis/advertisement/v1alpha1/groupversion_info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024 FLUIDOS Project
1+
// Copyright 2022-2025 FLUIDOS Project
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

apis/advertisement/v1alpha1/peeringcandidate_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024 FLUIDOS Project
1+
// Copyright 2022-2025 FLUIDOS Project
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

apis/network/v1alpha1/groupversion_info.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024 FLUIDOS Project
1+
// Copyright 2022-2025 FLUIDOS Project
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

apis/network/v1alpha1/knowncluster_status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024 FLUIDOS Project
1+
// Copyright 2022-2025 FLUIDOS Project
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

apis/network/v1alpha1/knowncluster_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2022-2024 FLUIDOS Project
1+
// Copyright 2022-2025 FLUIDOS Project
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)