From 6c523aabaec55e36c0b53f4b03844b377869ce91 Mon Sep 17 00:00:00 2001 From: Cory Snider Date: Mon, 23 Oct 2023 12:44:40 -0400 Subject: [PATCH] hack: fix suppressing Xattrs lint errors Finish cherry-picking the remaining part of 65e1adc219f4b1b71f09479aa98be87135a579d5 which was not included in commit 432fbc8638177a0f160e09dd6a3b8f044ec1e081. Signed-off-by: Cory Snider --- hack/validate/golangci-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/validate/golangci-lint.yml b/hack/validate/golangci-lint.yml index 815300506c..96370b47cb 100644 --- a/hack/validate/golangci-lint.yml +++ b/hack/validate/golangci-lint.yml @@ -98,7 +98,7 @@ issues: linters: - gosec # FIXME temporarily suppress these. See #39924 - - text: "SA1019: .*\\.Xattrs is deprecated: Use PAXRecords instead" + - text: "SA1019: .*\\.Xattrs has been deprecated since Go 1.10: Use PAXRecords instead" linters: - staticcheck # FIXME temporarily suppress these. See #39926