Skip to content

Commit

Permalink
chore(ci): bump go to 1.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Sep 17, 2024
1 parent 3a258b6 commit e00a48b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23
- name: Install tools
run: make install-format-go
- name: Formatting check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23
- name: Install tools
run: make install-lint-go
- name: Run golangci-lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
nvim:
strategy:
matrix:
version: [stable] # TODO: add nightly back when fixed
version: [stable] # TODO: add nightly back when fixed
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -38,6 +38,6 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23
- name: Run tests
run: make test-go
2 changes: 1 addition & 1 deletion .github/workflows/vuln.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: 1.23
- name: Install tools
run: make install-vuln-go
- name: Run vulnerability check
Expand Down
2 changes: 1 addition & 1 deletion tests/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fredrikaverpil/neotest-golang

go 1.22.2
go 1.23.1

require github.com/stretchr/testify v1.9.0

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/golist_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe("go list output", function()
Module = {
Dir = tests_filepath,
GoMod = tests_filepath .. "/go.mod",
GoVersion = "1.22.2",
GoVersion = "1.23.1",
Main = true,
Path = "github.com/fredrikaverpil/neotest-golang",
},
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/json_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe("Go list", function()
"Main": true,
"Dir": "/Users/fredrik/code/public/neotest-golang/tests/go",
"GoMod": "/Users/fredrik/code/public/neotest-golang/tests/go/go.mod",
"GoVersion": "1.22.2"
"GoVersion": "1.23.1"
}
}
]]
Expand All @@ -71,7 +71,7 @@ describe("Go list", function()
Main = true,
Dir = "/Users/fredrik/code/public/neotest-golang/tests/go",
GoMod = "/Users/fredrik/code/public/neotest-golang/tests/go/go.mod",
GoVersion = "1.22.2",
GoVersion = "1.23.1",
},
},
}
Expand Down

0 comments on commit e00a48b

Please sign in to comment.