From 0e2c708cfb9058ddb241fa08a5a6e8df7d332589 Mon Sep 17 00:00:00 2001 From: DK Liao Date: Tue, 14 Jan 2025 14:05:33 +0800 Subject: [PATCH] chore: lock build-linux runner at ubuntu-22.04 (#266) * chore: lock build-linux runner at ubuntu-22.04 * Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2763b0bd..fc189c3b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: pr-fast-check: if: ${{ github.event_name == 'pull_request' }} name: Pull Request Fast Check - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout the repository uses: actions/checkout@v4 @@ -52,7 +52,7 @@ jobs: build-linux: if: ${{ github.event_name != 'pull_request' }} name: Build [Linux] - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 env: RUSTC_WRAPPER: sccache CCACHE: sccache