Skip to content

Conversation

Copilot
Copy link
Contributor

@Copilot Copilot AI commented Jul 21, 2025

Updates the deprecated ubuntu-20.04 runner to ubuntu-latest in the GitHub Actions workflow to ensure compatibility and security.

Changes Made

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

Benefits

  • Future-proof: Always uses the most recent stable Ubuntu LTS version
  • Security: Receives the latest security updates and patches
  • Tooling: Includes updated tooling and dependencies
  • Compliance: Avoids deprecation warnings as GitHub removes ubuntu-20.04 support

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 is a minimal, non-breaking change that ensures the PostgreSQL playground tests continue to run on supported infrastructure.

Fixes #94.


💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.

Co-authored-by: pamelafox <297042+pamelafox@users.noreply.github.com>
@Copilot Copilot AI changed the title [WIP] Update Ubuntu runner from ubuntu-20.04 to ubuntu-latest in GitHub workflows Update Ubuntu runner from ubuntu-20.04 to ubuntu-latest in GitHub workflow Jul 21, 2025
@Copilot Copilot AI requested a review from pamelafox July 21, 2025 20:45
Copilot finished work on behalf of pamelafox July 21, 2025 20:45
@pamelafox pamelafox marked this pull request as ready for review July 21, 2025 21:53
@pamelafox pamelafox merged commit 3702e70 into main Jul 21, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants