From 57fed6c6ddafb705ed5f2e5b1348ce5630ca7fed Mon Sep 17 00:00:00 2001 From: Ryosuke Yabuki Date: Fri, 9 May 2025 09:34:38 +0900 Subject: [PATCH] ubuntu-20.04 is already deprecated ref: https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/ Also, the this job that was used ubuntu-20.04 was canceled see: https://github.com/launchableinc/cli/actions/runs/14918738650/job/41909954624 --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 94ac96920..d0f000a6a 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -29,7 +29,7 @@ jobs: needs: tagpr if: needs.tagpr.outputs.tag != '' || github.event_name == 'workflow_dispatch' - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4