Skip to content

Update GitHub Actions to use latest Ubuntu and Python#299

Merged
ringabout merged 1 commit intodevelfrom
ringabout-patch-1
Apr 1, 2026
Merged

Update GitHub Actions to use latest Ubuntu and Python#299
ringabout merged 1 commit intodevelfrom
ringabout-patch-1

Conversation

@ringabout
Copy link
Copy Markdown
Member

No description provided.

Copilot AI review requested due to automatic review settings April 1, 2026 08:12
@ringabout ringabout merged commit 1ea8727 into devel Apr 1, 2026
5 checks passed
@ringabout ringabout deleted the ringabout-patch-1 branch April 1, 2026 08:12
Copy link
Copy Markdown
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 documentation build workflow to run on a more current GitHub-hosted runner image and adjusts Python setup behavior for the docs job.

Changes:

  • Switch the framework docs job from ubuntu-20.04 to ubuntu-latest.
  • Remove the pinned Python version from the actions/setup-python step.

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

Comment on lines 10 to 12
framework-docs:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

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

Using ubuntu-latest makes the workflow non-deterministic because GitHub periodically repoints it to a newer Ubuntu LTS, which can break docs builds unexpectedly. If the goal is “latest” while staying stable, consider pinning to a specific runner image (e.g., ubuntu-24.04) and updating it intentionally when needed.

Copilot uses AI. Check for mistakes.
Comment on lines 16 to 17
- name: Setup Python
uses: actions/setup-python@v6
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

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

The setup-python step no longer pins a Python version, so the job will use whatever Python happens to be preinstalled on the runner (which may not be the “latest” and can change over time). To match the PR intent and keep builds predictable, specify python-version explicitly (e.g., 3.x to track the latest 3.x on GitHub-hosted runners, or a конкрет version like 3.12).

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