diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml index 72621e2b7b..ae7f107ffc 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/api.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: 1.22.x + go-version: 1.23.x - name: Set up Node uses: actions/setup-node@v3 with: @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: 1.22.x + go-version: 1.23.x - name: lint run: make api-lint diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index e773da30c1..d4628eedb0 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-go@v3 id: setup-go with: - go-version: 1.22.x + go-version: 1.23.x - name: go mod cache uses: actions/cache@v4 with: @@ -44,7 +44,7 @@ jobs: - uses: actions/setup-go@v3 id: setup-go with: - go-version: 1.22.x + go-version: 1.23.x - name: go mod cache uses: actions/cache@v4 with: @@ -72,7 +72,7 @@ jobs: - uses: actions/setup-go@v3 id: setup-go with: - go-version: 1.22.x + go-version: 1.23.x - run: make backend-integration-test lint: runs-on: ubuntu-latest @@ -81,7 +81,7 @@ jobs: - uses: actions/setup-go@v3 id: setup-go with: - go-version: 1.22.x + go-version: 1.23.x - name: go mod cache uses: actions/cache@v4 with: diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 28cb99b45b..12f405123c 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -94,7 +94,7 @@ jobs: - uses: actions/setup-go@v4 id: setup-go with: - go-version: 1.22.x + go-version: 1.23.x - uses: actions/setup-node@v4 with: node-version: "18.x" diff --git a/.github/workflows/license_review.yml b/.github/workflows/license_review.yml index cf70210830..7e3e0850e4 100644 --- a/.github/workflows/license_review.yml +++ b/.github/workflows/license_review.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-go@v3 id: setup-go with: - go-version: 1.22.x + go-version: 1.23.x - name: Install Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/scaffolding.yml b/.github/workflows/scaffolding.yml index 0bf4cfd9f6..a49bdde942 100644 --- a/.github/workflows/scaffolding.yml +++ b/.github/workflows/scaffolding.yml @@ -18,7 +18,7 @@ jobs: path: ${{ env.PACKAGEPATH }} - uses: actions/setup-go@v3 with: - go-version: 1.22.x + go-version: 1.23.x - uses: actions/setup-node@v3 with: node-version: '18.x' diff --git a/backend/go.mod b/backend/go.mod index acd9edd5e0..aa064da459 100644 --- a/backend/go.mod +++ b/backend/go.mod @@ -1,8 +1,8 @@ module github.com/lyft/clutch/backend -go 1.22.0 +go 1.23.0 -toolchain go1.22.3 +toolchain go1.23.0 require ( github.com/DATA-DOG/go-sqlmock v1.5.0 diff --git a/docs/_website/generator/go.mod b/docs/_website/generator/go.mod index b90a86f66c..f39dd2a2c5 100644 --- a/docs/_website/generator/go.mod +++ b/docs/_website/generator/go.mod @@ -1,6 +1,6 @@ module github.com/lyft/clutch/docs/website/generator -go 1.22 +go 1.23 require ( github.com/Masterminds/sprig/v3 v3.2.3 diff --git a/tools/go.mod b/tools/go.mod index 16edaa9b88..8b17795773 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,3 +1,3 @@ module github.com/lyft/clutch/tools -go 1.22 +go 1.23 diff --git a/tools/golangci-lint.sh b/tools/golangci-lint.sh index 17b2318118..78674070a8 100755 --- a/tools/golangci-lint.sh +++ b/tools/golangci-lint.sh @@ -6,9 +6,9 @@ BUILD_ROOT="${REPO_ROOT}/build" BUILD_BIN="${BUILD_ROOT}/bin" NAME=golangci-lint -RELEASE=v1.56.1 -OSX_RELEASE_256=62f02d4c0e8f6f8c77e787b8f271cdd1535eb7d2a28742e2535608652271018e -LINUX_RELEASE_256=aaf8260c76530f7571c49a7bc34b2ecd15accac21106710d47463a2313f1f663 +RELEASE=v1.61.0 +OSX_RELEASE_256=5c280ef3284f80c54fd90d73dc39ca276953949da1db03eb9dd0fbf868cc6e55 +LINUX_RELEASE_256=77cb0af99379d9a21d5dc8c38364d060e864a01bd2f3e30b5e8cc550c3a54111 ARCH=amd64 diff --git a/tools/scaffolding/templates/gateway/backend/go.mod.tmpl b/tools/scaffolding/templates/gateway/backend/go.mod.tmpl index 694faab105..1216fd41af 100644 --- a/tools/scaffolding/templates/gateway/backend/go.mod.tmpl +++ b/tools/scaffolding/templates/gateway/backend/go.mod.tmpl @@ -1,3 +1,3 @@ module {{ .RepoProvider }}/{{ .RepoOwner }}/{{ .RepoName }}/backend -go 1.22 +go 1.23