From ffd3676d55f323c0e40095f0f1506b08351b16ee Mon Sep 17 00:00:00 2001 From: Mohammed Almusaddar Date: Wed, 23 Apr 2025 18:03:46 +0400 Subject: [PATCH] Update CI workflow to use ubuntu-latest instead of ubuntu-20.04 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa41c1f..0f5e0d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: ci on: [push] jobs: compile: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3 @@ -19,7 +19,7 @@ jobs: - name: Compile run: poetry run mypy . test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3