diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5c86c7a..465aad1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 with: - go-version: "1.20" + go-version-file: 'go.mod' - name: golangci-lint uses: golangci/golangci-lint-action@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de25502..a34c8e8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: "1.20" + go-version-file: 'go.mod' - name: Run GoReleaser uses: goreleaser/goreleaser-action@v4 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f05b997..59a8e62 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: "1.20" + go-version-file: 'go.mod' - name: Test run: make test GOTEST_FLAGS="-v -count=1" diff --git a/.github/workflows/validate-generated-files.yml b/.github/workflows/validate-generated-files.yml index 69763b3..73f1af4 100644 --- a/.github/workflows/validate-generated-files.yml +++ b/.github/workflows/validate-generated-files.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.20' + go-version-file: 'go.mod' - name: Install Protoc uses: arduino/setup-protoc@v1 diff --git a/go.mod b/go.mod index 0f85ed0..16802b3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/conduitio-labs/conduit-connector-databricks -go 1.20 +go 1.21 require ( github.com/conduitio/conduit-connector-sdk v0.6.0