build: make go1.23 the minimum go version

This is necessary now that golang.org/x/crypto is only allowing the
last two versions of Go.

See: https://go.googlesource.com/crypto/+/89ff08d67c4d79f9ac619aaf1f7388888798651f
This commit is contained in:
Nick Craig-Wood
2025-02-26 11:32:05 +00:00
parent 68e40dc141
commit ddecfe6e77
8 changed files with 13 additions and 382 deletions

8
lib/file/mkdir.go Normal file
View File

@@ -0,0 +1,8 @@
package file
import "os"
// MkdirAll now just calls os.MkdirAll
func MkdirAll(path string, perm os.FileMode) error {
return os.MkdirAll(path, perm)
}