Skip to content

Conversation

@ktyagiapphelix2u
Copy link
Contributor

Description

Updating the latest version of ubuntu

Ticket Reference

https://2u-internal.atlassian.net/browse/BOMS-285

Copilot AI review requested due to automatic review settings January 6, 2026 10:06
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the Ubuntu runner version from ubuntu-24.04 to ubuntu-latest across all GitHub Actions workflow files that were using the pinned version. The change aligns with ticket BOMS-285 to keep Ubuntu runners on the latest available version.

Key Changes:

  • Updated Ubuntu runner specification from pinned version to latest tag across all workflow files
  • Ensures consistency in using ubuntu-latest for all Ubuntu-based CI jobs

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.

File Description
.github/workflows/quality.yml Updated runs-on specification from ubuntu-24.04 to ubuntu-latest for quality checks job
.github/workflows/provisioning-tests.yml Updated matrix OS configuration from ubuntu-24.04 to ubuntu-latest for provisioning tests
.github/workflows/cli-tests.yml Updated matrix OS image from ubuntu-24.04 to ubuntu-latest for Linux CLI tests

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.


run_ci:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
Copy link

Copilot AI Jan 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using 'ubuntu-latest' instead of a pinned version like 'ubuntu-24.04' can lead to non-reproducible CI builds. When GitHub updates the 'ubuntu-latest' tag to a newer Ubuntu version, workflows may behave differently or break unexpectedly without any code changes. Consider using a specific Ubuntu version for more predictable and reproducible CI builds. If you need to use the latest version, consider documenting the reason and having a process to validate workflows when ubuntu-latest is updated by GitHub.

Suggested change
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

Copilot uses AI. Check for mistakes.
matrix:
os:
- ubuntu-24.04
- ubuntu-latest
Copy link

Copilot AI Jan 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using 'ubuntu-latest' instead of a pinned version like 'ubuntu-24.04' can lead to non-reproducible CI builds. When GitHub updates the 'ubuntu-latest' tag to a newer Ubuntu version, workflows may behave differently or break unexpectedly without any code changes. Consider using a specific Ubuntu version for more predictable and reproducible CI builds. If you need to use the latest version, consider documenting the reason and having a process to validate workflows when ubuntu-latest is updated by GitHub.

Suggested change
- ubuntu-latest
- ubuntu-24.04

Copilot uses AI. Check for mistakes.
os:
- name: linux
image: ubuntu-24.04
image: ubuntu-latest
Copy link

Copilot AI Jan 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using 'ubuntu-latest' instead of a pinned version like 'ubuntu-24.04' can lead to non-reproducible CI builds. When GitHub updates the 'ubuntu-latest' tag to a newer Ubuntu version, workflows may behave differently or break unexpectedly without any code changes. Consider using a specific Ubuntu version for more predictable and reproducible CI builds. If you need to use the latest version, consider documenting the reason and having a process to validate workflows when ubuntu-latest is updated by GitHub.

Suggested change
image: ubuntu-latest
image: ubuntu-24.04

Copilot uses AI. Check for mistakes.
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.

2 participants