diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb4f12e..f4a3b8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: "1.26" + go-version-file: go.mod - name: Check formatting run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5445e99..c77a77d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: "1.26" + go-version-file: go.mod - name: Build binary env: diff --git a/.tool-versions b/.tool-versions index fde0234..05a23a6 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -golang 1.26.1 +golang 1.26.2 diff --git a/go.mod b/go.mod index 82d1770..b34ecc5 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/bun913/live-markdown.nvim -go 1.22.3 +go 1.26 + +toolchain go1.26.2 require ( github.com/alecthomas/chroma/v2 v2.23.1