diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff49bd5..3227cc0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.26" + go-version: "1.24" cache: true - name: golangci-lint uses: golangci/golangci-lint-action@v6 @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.26" + go-version: "1.24" cache: true - name: Build run: go build -v ./... diff --git a/.golangci.yml b/.golangci.yml index 8627f15..3649efc 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,7 +1,7 @@ run: timeout: 3m tests: true - go: "1.26" + go: "1.24" output: formats: diff --git a/go.mod b/go.mod index 2b9f46a..f649e5c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ricarneiro/ctx -go 1.26.1 +go 1.24 require github.com/spf13/cobra v1.10.2