diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index f4271f1d..f99efe27 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -36,10 +36,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 - - name: Setup Golang + - name: Install Go uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version-file: go.mod cache: true - name: Run Golang benchmarks diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38b09faa..2e1f6683 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - name: Install Go uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version-file: go.mod cache: true - name: Build @@ -89,7 +89,7 @@ jobs: - name: Install Go uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version-file: go.mod cache: true - name: Lint @@ -132,7 +132,7 @@ jobs: - name: Install Go uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version-file: go.mod cache: true - name: Download dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75c09852..b5053546 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - name: Install Go uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version-file: go.mod cache: true - name: Run GoReleaser diff --git a/go.mod b/go.mod index 6ba7a1d8..4e9a15e6 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ozontech/seq-db -go 1.24.0 +go 1.24.6 require ( contrib.go.opencensus.io/exporter/jaeger v0.2.1