From 89772d763b16acdf34c85a19e1524255b0523482 Mon Sep 17 00:00:00 2001 From: CakeLancelot Date: Sat, 7 Oct 2023 17:10:55 -0500 Subject: [PATCH] CI: specify Ubuntu runner version and fix artifact zip name We were technically already using 22.04 for a bit, it got updated without us noticing since the version was set to `ubuntu-latest`. Affix the version to 22.04 so that it doesn't get unexpectedly updated again, and update the artifact's zip to reflect the change. --- .github/workflows/check-builds.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-builds.yaml b/.github/workflows/check-builds.yaml index 4a857f9..fda1d64 100644 --- a/.github/workflows/check-builds.yaml +++ b/.github/workflows/check-builds.yaml @@ -53,7 +53,7 @@ jobs: - name: Upload build artifact uses: actions/upload-artifact@v2 with: - name: 'ubuntu20_04-bin-x64-${{ env.SHORT_SHA }}' + name: 'ubuntu22_04-bin-x64-${{ env.SHORT_SHA }}' path: bin windows-build: @@ -112,7 +112,7 @@ jobs: copy-artifacts: if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master' - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [windows-build, ubuntu-build] env: BOT_SSH_KEY: ${{ secrets.BOT_SSH_KEY }}