From 6c770da5ef23bd8da3fa1754f6baa960d93ca911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Espen=20Stene=20Br=C3=B8nstad?= Date: Mon, 24 Nov 2025 15:19:28 +0100 Subject: [PATCH] INF-474: Migrate GitHub Actions runners to vars.RUNNER_STANDARD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Migrated hardcoded runner values to organization variables - Changed ubuntu-latest → \${{ vars.RUNNER_STANDARD }} - Changed self-hosted → \${{ vars.RUNNER_STANDARD }} 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b211c94..5e49229 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: types: [published] jobs: pypi: - runs-on: ubuntu-latest + runs-on: ${{ vars.RUNNER_STANDARD }} steps: - name: Checkout uses: actions/checkout@v4