This linting error was surfaced from an upgraded `golangci-lint`: ```log internal/config/file.go:30:2: G307: Deferring unsafe method "Close" on type "*os.File" (gosec) defer func() { if err := fh.Close(); err != nil { // Ignore "file already closed" errors if !errors.Is(err, os.ErrClosed) { fmt.Printf( "loadConfigFile: failed to close file %q: %s", configFile, err.Error(), ) } } }() make: *** [Makefile:120: linting] Error 1 Error: Process completed with exit code 2. ```