From 94ed0fe2804af19f47a0ebf5be1b377d5c081b43 Mon Sep 17 00:00:00 2001 From: Leeren Date: Thu, 24 Oct 2024 22:18:04 -0700 Subject: [PATCH] chore(workflows): pin release workflow version to 1.22.0 (#310) pins go version to 1.22.0 for the release workflow issue: none --- .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 2b06d1bd..4b25b110 100644 --- a/.github/workflows/build-release-artifacts.yml +++ b/.github/workflows/build-release-artifacts.yml @@ -32,6 +32,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