From ab8925de20576333b7d8f638d46cc9eab288b4f5 Mon Sep 17 00:00:00 2001 From: Leeren Date: Thu, 24 Oct 2024 22:11:23 -0700 Subject: [PATCH] chore(workflows): pin go version to 1.22.0 (#55) --- .github/workflows/build-release-artifacts.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-release-artifacts.yml b/.github/workflows/build-release-artifacts.yml index 3b9f9cd1c..7bc0101a9 100644 --- a/.github/workflows/build-release-artifacts.yml +++ b/.github/workflows/build-release-artifacts.yml @@ -28,6 +28,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4.1.5 + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: '1.22.0' + - name: Display Go version run: go version