From 28214e331d3488967ca30e58b4e32d225e1a6880 Mon Sep 17 00:00:00 2001 From: Phil Porada Date: Tue, 7 Feb 2023 16:30:49 -0500 Subject: [PATCH] Quote Go version to prevent yaml interpreting value as a float (#6634) --- .github/workflows/release.yml | 4 ++-- .github/workflows/try-release.yml | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c7b184fbf..6054ec9f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,8 +14,8 @@ jobs: fail-fast: false matrix: GO_VERSION: - - 1.19.5 - - 1.20 + - "1.19.5" + - "1.20" runs-on: ubuntu-20.04 permissions: contents: write diff --git a/.github/workflows/try-release.yml b/.github/workflows/try-release.yml index 350ead1a5..7689b5d3d 100644 --- a/.github/workflows/try-release.yml +++ b/.github/workflows/try-release.yml @@ -11,6 +11,12 @@ on: jobs: try-release: + strategy: + fail-fast: false + matrix: + GO_VERSION: + - "1.19.5" + - "1.20" runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 @@ -20,5 +26,5 @@ jobs: - name: Build .deb id: build env: - GO_VERSION: 1.19.5 + GO_VERSION: ${{ matrix.GO_VERSION }} run: ./tools/make-deb.sh