From f070c131e877365aae0fd84a48c1d005e51abfcc Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Mon, 17 Feb 2025 14:16:05 -0600 Subject: [PATCH] Revert "build: pass Go release channel to lint-project.sh" This reverts commit 589422d89b422a9c03f8b8ff46d05702ad346cf6. --- .github/workflows/cgo.yml | 3 --- .github/workflows/nocgo.yml | 2 -- 2 files changed, 5 deletions(-) diff --git a/.github/workflows/cgo.yml b/.github/workflows/cgo.yml index cb273d9a..a24af409 100644 --- a/.github/workflows/cgo.yml +++ b/.github/workflows/cgo.yml @@ -35,15 +35,12 @@ jobs: - name: Check if: runner.os == 'Linux' run: make check - env: - GO_RELEASE: ${{ matrix.version }} - name: Short Check if: runner.os != 'Linux' run: make check env: GOTEST_FLAGS: "-short" - GO_RELEASE: ${{ matrix.version }} - name: Logs if: failure() && runner.os == 'Linux' diff --git a/.github/workflows/nocgo.yml b/.github/workflows/nocgo.yml index 800cd7c0..8ef0d6cf 100644 --- a/.github/workflows/nocgo.yml +++ b/.github/workflows/nocgo.yml @@ -37,7 +37,6 @@ jobs: run: make check env: CGO_ENABLED: "0" - GO_RELEASE: ${{ matrix.version }} - name: Short Check if: runner.os != 'Linux' @@ -45,7 +44,6 @@ jobs: env: CGO_ENABLED: "0" GOTEST_FLAGS: "-short" - GO_RELEASE: ${{ matrix.version }} - name: Logs if: failure() && runner.os == 'Linux'