From e358422c7fa64494c0b7d2962c2ed40e40e3649f Mon Sep 17 00:00:00 2001 From: Bharat Kunwar Date: Thu, 20 Nov 2025 13:21:11 +0000 Subject: [PATCH] INF-474/feat: Migrate GitHub Actions runners to vars.RUNNER_STANDARD --- .github/workflows/integrate.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 9c869c4..594a06d 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -9,7 +9,7 @@ concurrency: jobs: interrogate: - runs-on: ubuntu-latest + runs-on: ${{ vars.RUNNER_STANDARD }} steps: - name: Checkout repository uses: actions/checkout@v2 @@ -20,7 +20,7 @@ jobs: fail-under: 80 pytest: - runs-on: ubuntu-latest + runs-on: ${{ vars.RUNNER_STANDARD }} steps: - name: Check out repository code uses: actions/checkout@v2 @@ -41,7 +41,7 @@ jobs: black: - runs-on: ubuntu-latest + runs-on: ${{ vars.RUNNER_STANDARD }} steps: - uses: actions/checkout@v2 - uses: psf/black@stable