Skip to content

Commit

Permalink
Update golangci-lint to latest
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Coffman <steve@khanacademy.org>
  • Loading branch information
StevenACoffman committed Jun 6, 2023
1 parent 50ac587 commit 245db11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
uses: golangci/golangci-lint-action@v3.5.0
with:
version: latest
# skip cache because of flaky behaviors
Expand Down
2 changes: 1 addition & 1 deletion codegen/testserver/followschema/fields_order_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func TestFieldsOrder(t *testing.T) {
ret = &FieldsOrderPayload{
FirstFieldValue: in.FirstField,
}
return
return ret, nil
}

t.Run("firstField", func(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion codegen/testserver/followschema/ptr_to_ptr_input_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func TestPtrToPtr(t *testing.T) {
}
}
}
return
return ret, err
}

t.Run("pointer to pointer input missing", func(t *testing.T) {
Expand Down

0 comments on commit 245db11

Please sign in to comment.