From 6a453b44aae81ffbe31d8615554312b809777d97 Mon Sep 17 00:00:00 2001 From: James Kebinger Date: Wed, 19 Nov 2025 18:20:46 -0600 Subject: [PATCH] Update CI runner from ubuntu-20.04 to ubuntu-latest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ubuntu 20.04 runners are no longer available on GitHub Actions. This updates the CI workflow to use ubuntu-latest, following the pattern used in the successor project (sdk-python). This change: - Fixes "Requested labels: ubuntu-20.04" runner errors - Aligns with GitHub's current runner offerings - Matches the configuration in ReforgeHQ/sdk-python 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59b3e4a..3fa1889 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: MIX_ENV: test GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}