diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e32d8fb..a8976e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: fetch-depth: 2 - uses: actions/setup-go@v7 with: - go-version: '1.26' + go-version: '1.27' - name: Run unit tests with coverage run: go test -coverpkg=./... ./... -race -coverprofile=coverage.out -covermode=atomic - name: Upload coverage to Codecov @@ -37,7 +37,7 @@ jobs: - uses: actions/checkout@v7 - uses: actions/setup-go@v7 with: - go-version: '1.26' + go-version: '1.27' - name: Wait for Consul run: | until curl -s http://localhost:8500/v1/status/leader | grep -q .; do diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5c409cf..30a2e2b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v7 with: - go-version: '1.26' + go-version: '1.27' - name: Build run: go build -v ./...