Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
go-version: 1.26.4
- name: Enable pulling Go modules from private sourcegrahp/sourcegraph
run: git config --global url."https://${PRIVATE_TOKEN}@github.com/sourcegraph/".insteadOf "https://github.com/sourcegraph/"
- name: Check Go module tidiness
Expand All @@ -53,7 +53,7 @@ jobs:
name: Test
strategy:
matrix:
go-version: [ 1.22.x ]
go-version: [ 1.26.4 ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
golang 1.23.4
golang 1.26.4
3 changes: 1 addition & 2 deletions clientv1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (

"connectrpc.com/connect"
"github.com/sourcegraph/sourcegraph/lib/errors"
"github.com/sourcegraph/sourcegraph/lib/pointers"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

Expand Down Expand Up @@ -71,7 +70,7 @@ func TestParseResponseAndError(t *testing.T) {
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
_, err := parseResponseAndError(connect.NewResponse(pointers.Ptr("foo")), test.err())
_, err := parseResponseAndError(connect.NewResponse(new("foo")), test.err())
if test.wantErr == "" {
assert.NoError(t, err)
} else {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/sourcegraph/sourcegraph-accounts-sdk-go

go 1.23.4
go 1.26.4

require (
cloud.google.com/go/pubsub v1.45.3
Expand Down
Loading