From f92bfe83a6bf39ae474a84e9373c1e5e832c840e Mon Sep 17 00:00:00 2001 From: Harrison Cramer Date: Thu, 26 Dec 2024 10:56:32 -0800 Subject: [PATCH] Fix: Update health check file, Github runners, etc --- .github/workflows/go.yaml | 4 ++-- doc/gitlab.nvim.txt | 2 +- lua/gitlab/health.lua | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 73f5ad13..49f7403f 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 with: - go-version: '1.23.1' + go-version: '1.23.4' cache: false - name: golangci-lint uses: golangci/golangci-lint-action@v3 @@ -37,7 +37,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.19' + go-version: '1.23.4' - name: Build run: make compile - name: Test diff --git a/doc/gitlab.nvim.txt b/doc/gitlab.nvim.txt index bfeb4332..17263893 100644 --- a/doc/gitlab.nvim.txt +++ b/doc/gitlab.nvim.txt @@ -44,7 +44,7 @@ the editor. This means you can do things like: REQUIREMENTS *gitlab.nvim.requirements* -- Go >= v1.19 +- Go >= v1.23.4 QUICK START *gitlab.nvim.quick-start* diff --git a/lua/gitlab/health.lua b/lua/gitlab/health.lua index 8cc26e25..c4d78f97 100644 --- a/lua/gitlab/health.lua +++ b/lua/gitlab/health.lua @@ -10,7 +10,7 @@ local function check_go_version() if major and tonumber(major) >= 1 and tonumber(minor) >= 19 then return else - return "Go is installed, but version is older than 1.23.4." + return "Go is installed, but version is older than 1.23" end else return "Go is not installed."