Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab/ci/test.yml2
-rw-r--r--go.mod7
2 files changed, 5 insertions, 4 deletions
diff --git a/.gitlab/ci/test.yml b/.gitlab/ci/test.yml
index 103f925e..ff373dbf 100644
--- a/.gitlab/ci/test.yml
+++ b/.gitlab/ci/test.yml
@@ -11,7 +11,7 @@
image: golang:${GO_VERSION}
parallel:
matrix:
- - GO_VERSION: ["1.17", "1.18", "1.19"]
+ - GO_VERSION: ["1.18", "1.19", "1.20"]
tests:
extends: .tests-matrix
diff --git a/go.mod b/go.mod
index 72b81a0b..a25fc58d 100644
--- a/go.mod
+++ b/go.mod
@@ -2,9 +2,10 @@ module gitlab.com/gitlab-org/gitlab-pages
// before bumping this:
// - update the minimum version used in ci
-// - make sure the internal/vfs/serving package is synced
-// with upstream
-go 1.17
+// - make sure the internal/vfs/serving package is synced with upstream
+// - which can be done in the go repository with:
+// git log --oneline -s -L:serveContent:src/net/http/fs.go --since="2021-02-16"
+go 1.18
require (
github.com/golang-jwt/jwt/v4 v4.1.0