Skip to content

Commit

Permalink
Ubuntu 20.04 is losing long term support on 05/31/2025, but the Githu…
Browse files Browse the repository at this point in the history
…b Ubuntu 20.04 actions runner image will be fully unsupported on 04/01/2025, and deprecation began on 02/01/2025. The issue link is below.

actions/runner-images#11101

This repository uses the Ubuntu 20.04 LTS runner in two Github actions - ci and pypi-publish. As of 03/04/2025 any new runs of these actions fail with the following error.

This is a scheduled Ubuntu 20.04 brownout. Ubuntu 20.04 LTS runner will be removed on 2025-04-01. For more details, see actions/runner-images#11101

This commit updates the version of the Ubuntu runner from 20.04 to latest.
  • Loading branch information
michaelroytman committed Mar 4, 2025
1 parent c0cf4da commit 2687db3
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-latest]
python-version: ['3.12']
toxenv: [quality, pii_check, django42]

2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ on:
jobs:

push:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout

0 comments on commit 2687db3

Please sign in to comment.