Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jul 21, 2025

Updates the deprecated ubuntu-20.04 runner to ubuntu-latest in the GitHub Actions workflow to ensure compatibility with GitHub's updated infrastructure.

Changes:

  • Updated .github/workflows/tests.yaml line 16: os: ["ubuntu-20.04"]os: ["ubuntu-latest"]

Benefits:

  • Uses the most recent stable Ubuntu LTS version
  • Receives the latest security updates and patches
  • Includes updated tooling and dependencies
  • Future-proofs the workflow against runner deprecation

Before:

matrix:
  os: ["ubuntu-20.04"]
  python_version: ["3.9", "3.10", "3.11", "3.12"]

After:

matrix:
  os: ["ubuntu-latest"]
  python_version: ["3.9", "3.10", "3.11", "3.12"]

This change ensures the Python tests will continue to run successfully on GitHub's supported runner infrastructure.

Fixes #39.


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Co-authored-by: pamelafox <297042+pamelafox@users.noreply.github.com>
Copilot AI changed the title [WIP] Update Ubuntu runner from ubuntu-20.04 to ubuntu-latest in GitHub workflows Update ubuntu-20.04 to ubuntu-latest in GitHub workflow Jul 21, 2025
Copilot AI requested a review from pamelafox July 21, 2025 20:42
@pamelafox pamelafox marked this pull request as ready for review July 21, 2025 20:46
@pamelafox pamelafox merged commit 81b9e4e into main Jul 21, 2025
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Update Ubuntu runner from ubuntu-20.04 to ubuntu-latest in GitHub workflows

2 participants