Skip to content
Merged
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/dco-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
steps:
- name: Check for DCO
id: dco-check
uses: tisonkun/actions-dco@v1.1
uses: tisonkun/actions-dco@f1024cd563550b5632e754df11b7d30b73be54a5
- name: Comment about DCO status
uses: actions/github-script@v6
if: ${{ failure() }}
Expand All @@ -22,4 +22,4 @@ jobs:
[contributing guide](https://github.com/databricks/databricks-sql-go/blob/main/CONTRIBUTING.md) \
every commit message must include a sign-off message. One or more of your commits is missing this message. \
You can reword previous commit messages with an interactive rebase (\`git rebase -i main\`).`
})
})
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ jobs:
- name: Set up Go Toolchain
uses: actions/setup-go@v5
with:
go-version: '1.20.x'
go-version: '1.21.x'
cache: false

- name: Lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@d6238b002a20823d52840fda27e2d4891c5952dc
with:
version: 'v1.51'
build-and-test:
name: Test and Build
strategy:
matrix:
go-version: [1.20.x]
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}

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/databricks/databricks-sql-go

go 1.20
go 1.21

require (
github.com/apache/arrow/go/v12 v12.0.1
Expand Down
Loading