aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorChristian Stewart2023-09-06 14:02:17 -0700
committerrfjakob2023-10-29 13:10:06 +0100
commit770707e9acd059a36b9825b6bc15e5df7423c98b (patch)
tree06b9d998d8a1bdec93a51652b1ade3cd15a74596 /go.mod
parent4ef110f1f3dd6308d88e951aa89dc426d32ad6f1 (diff)
.github: drop unsupported Go versions
According to https://go.dev/doc/devel/release#policy each major Go release is supported until there are two newer major releases. For example, Go 1.5 was supported until the Go 1.7 release, and Go 1.6 was supported until the Go 1.8 release. Older releases are not receiving security updates. Upcoming dependency updates to golang exp packages use newer features like unsafe.Slice and therefore do not build correctly against Go < 1.19.x. Drop the older versions and add the newer versions to the ci. Signed-off-by: Christian Stewart <christian@aperture.us>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 6aebae9..e778aab 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module github.com/rfjakob/gocryptfs/v2
-go 1.16
+go 1.19
require (
github.com/aperturerobotics/jacobsa-crypto v1.0.0