Skip to content

Commit 8195ff2

Browse files
committed
chore(ci): address copilot feedback
Signed-off-by: Matthew H. Irby <matt.irby@keyfactor.com>
1 parent 57acca4 commit 8195ff2

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# v2.5.3
2-
## Chores
3-
- Update dependencies to address various security vulnerabilities:
1+
# v2.5.3
2+
## Security
3+
- Updated dependencies to address various security vulnerabilities:
44
- google.golang.org/grpc -> v1.79.3 (CVE-2026-33186)
55
- github.com/Azure/go-ntlmssp -> v0.1.1 (CVE-2026-32952)
66
- golang.org/x/crypto -> v0.46.0 (CVE-2025-58181 & CVE-2025-47914)

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ lint: golangci-lint ## Run golangci-lint linter & yamllint
8383
lint-fix: golangci-lint ## Run golangci-lint linter and perform fixes
8484
$(GOLANGCI_LINT) run --fix
8585

86+
.PHONY: fix
87+
fix:
88+
go fix ./...
89+
8690
.PHONY: helm-template
8791
helm-template: ## Render Helm chart templates to stdout (includes CRDs).
8892
helm template $(HELM_RELEASE_NAME) $(HELM_CHART_DIR) --include-crds

internal/command/client.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ import (
2323
"strings"
2424
"time"
2525

26+
"context"
27+
2628
"github.com/Azure/azure-sdk-for-go/sdk/azcore"
2729
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
2830
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
2931
v1 "github.com/Keyfactor/keyfactor-go-client-sdk/v25/api/keyfactor/v1"
3032
"github.com/go-logr/logr"
3133
"github.com/golang-jwt/jwt/v5"
32-
"golang.org/x/net/context"
3334
"golang.org/x/oauth2"
3435
"golang.org/x/oauth2/google"
3536
"google.golang.org/api/idtoken"

0 commit comments

Comments
 (0)