From 93f4cc1b51196d09fe9abdfe9b3c7d8d96c0ea00 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Mon, 31 Jul 2023 10:43:53 -0400 Subject: [PATCH] [CI:DOCS] GHA: Use stable go for Mac/Win builds Having hard-coded versions burried under a hidden directory is ripe for maintenance headaches. Use the latest 'stable' version, since this will be "close enough" to what we test in CI. Ref: https://github.com/containers/podman/discussions/19404 Signed-off-by: Chris Evich --- .github/workflows/mac-pkg.yml | 2 +- .github/workflows/upload-win-installer.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mac-pkg.yml b/.github/workflows/mac-pkg.yml index 0094184f55..8252ed356a 100644 --- a/.github/workflows/mac-pkg.yml +++ b/.github/workflows/mac-pkg.yml @@ -70,7 +70,7 @@ jobs: if: steps.check.outputs.buildamd == 'true' || steps.check.outputs.buildarm == 'true' uses: actions/setup-go@v4 with: - go-version: '1.18' + go-version: stable - name: Create Keychain if: steps.check.outputs.buildamd == 'true' || steps.check.outputs.buildarm == 'true' run: | diff --git a/.github/workflows/upload-win-installer.yml b/.github/workflows/upload-win-installer.yml index 18a9375d09..501f8c48fe 100644 --- a/.github/workflows/upload-win-installer.yml +++ b/.github/workflows/upload-win-installer.yml @@ -45,7 +45,7 @@ jobs: uses: actions/setup-go@v4 if: steps.check.outputs.already-exists != 'true' with: - go-version: 1.18 + go-version: stable - name: Setup Signature Tooling if: steps.Check.outputs.already-exists != 'true' run: |