From 3e43b2011baae086bde0c7b5cbf6c69541bb3120 Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Mon, 23 Sep 2024 15:13:34 -0500 Subject: [PATCH] chore: Remove `setup-go` action; go is not used --- .github/workflows/ci.yaml | 5 +---- .github/workflows/release.yaml | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2670c689..034fa68c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,10 +16,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v5 - with: - go-version: 1.23 - check-latest: true + - run: make install-toolchain - run: make verify - run: make package diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6e98ff2f..8556e3d8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,10 +18,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v5 - with: - go-version: 1.23 - check-latest: true + - run: make install-toolchain - run: make verify - run: make package publish