Skip to content

Commit

Permalink
.github: use go 1.21 and 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
rsc committed Apr 6, 2024
1 parent 57f8560 commit e57dcbc
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
go-version: [1.21.x, 1.22.x]
platform: [ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion cmd/L/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ import (
"path/filepath"
"strconv"

p9client "github.com/fhs/9fans-go/plan9/client"
"9fans.net/acme-lsp/internal/lsp"
"9fans.net/acme-lsp/internal/lsp/acmelsp"
"9fans.net/acme-lsp/internal/lsp/acmelsp/config"
"9fans.net/acme-lsp/internal/lsp/cmd"
"9fans.net/acme-lsp/internal/lsp/proxy"
"9fans.net/internal/go-lsp/lsp/protocol"
p9client "github.com/fhs/9fans-go/plan9/client"
"github.com/sourcegraph/jsonrpc2"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/acmefocused/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (
"path/filepath"
"sync"

"9fans.net/acme-lsp/internal/p9service"
"github.com/fhs/9fans-go/acme"
"github.com/fhs/9fans-go/plan9/client"
"9fans.net/acme-lsp/internal/p9service"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions internal/lsp/acmelsp/acmelsp.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import (
"strconv"
"strings"

"github.com/fhs/9fans-go/plan9"
"github.com/fhs/9fans-go/plumb"
"9fans.net/acme-lsp/internal/acme"
"9fans.net/acme-lsp/internal/acmeutil"
"9fans.net/acme-lsp/internal/lsp"
"9fans.net/acme-lsp/internal/lsp/proxy"
"9fans.net/acme-lsp/internal/lsp/text"
"9fans.net/internal/go-lsp/lsp/protocol"
"github.com/fhs/9fans-go/plan9"
"github.com/fhs/9fans-go/plumb"
)

func CurrentWindowRemoteCmd(ss *ServerSet, fm *FileManager) (*RemoteCmd, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/lsp/acmelsp/acmelsp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"strings"
"testing"

"github.com/fhs/9fans-go/plumb"
"9fans.net/acme-lsp/internal/lsp"
"9fans.net/acme-lsp/internal/lsp/acmelsp/config"
"9fans.net/internal/go-lsp/lsp/protocol"
"github.com/fhs/9fans-go/plumb"
"github.com/google/go-cmp/cmp"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/lsp/acmelsp/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"runtime"
"strings"

"9fans.net/internal/go-lsp/lsp/protocol"
"github.com/BurntSushi/toml"
"github.com/fhs/9fans-go/plan9/client"
"9fans.net/internal/go-lsp/lsp/protocol"
)

// Flags represent a set of command line flags.
Expand Down

0 comments on commit e57dcbc

Please sign in to comment.