Skip to content

Commit

Permalink
Merge pull request #3790 from pedromfcarvalho/v1.7-revert-lint-noverify
Browse files Browse the repository at this point in the history
Revert commit and fix CI for v1.7.3 release
  • Loading branch information
pedromfcarvalho authored Feb 18, 2025
2 parents 0240f85 + e00cc5f commit 5b5bc48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
uses: golangci/golangci-lint-action@v6
with:
version: v1.58
verify: false
- name: Run CI
run: |
./scripts/ci
Expand Down
4 changes: 2 additions & 2 deletions pki/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -506,8 +506,8 @@ func DeepEqualIPsAltNames(oldIPs, newIPs []net.IP) bool {
if len(oldIPs) != len(newIPs) {
return false
}
oldIPsStrings := make([]string, 0, len(oldIPs))
newIPsStrings := make([]string, 0, len(newIPs))
oldIPsStrings := make([]string, len(oldIPs))
newIPsStrings := make([]string, len(newIPs))
for i := range oldIPs {
oldIPsStrings = append(oldIPsStrings, oldIPs[i].String())
newIPsStrings = append(newIPsStrings, newIPs[i].String())
Expand Down

0 comments on commit 5b5bc48

Please sign in to comment.