From 451f03385528a2666e81def58ecc374a60e8ba97 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Mon, 8 May 2023 14:54:11 +0200 Subject: [PATCH] mod: remove unused replace directive With recent updates to some of our dependencies, the github.com/dgrijalva/jwt-go package is not referenced in any transitive dependency anymore which allows us to remove one of the replace directives which was added as a security precaution before. --- go.mod | 3 --- 1 file changed, 3 deletions(-) diff --git a/go.mod b/go.mod index 8960a88b6..f1d0696f4 100644 --- a/go.mod +++ b/go.mod @@ -171,9 +171,6 @@ require ( sigs.k8s.io/yaml v1.2.0 // indirect ) -// This replace is for https://github.com/advisories/GHSA-w73w-5m7g-f7qc -replace github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt v3.2.1+incompatible - // This replace is for https://github.com/advisories/GHSA-25xm-hr59-7c27 replace github.com/ulikunitz/xz => github.com/ulikunitz/xz v0.5.8