Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ansible-lint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Python 3.8 unavailable on Ubuntu 24.04 runner

High Severity

Switching the runner from ubuntu-latest to blacksmith-4vcpu-ubuntu-2404 (Ubuntu 24.04) breaks the workflow because actions/setup-python@v2 with python-version: '3.8' will fail — Python 3.8 prebuilt binaries are not available on Ubuntu 24.04 images. Python 3.8 reached end-of-life and was removed from 24.04 runner images. The previous ubuntu-latest (22.04) still had Python 3.8 support.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9b710a8. Configure here.

steps:
- uses: actions/checkout@v2
- name: Setup python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-trailing-whitespaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: check-trailing-whitespaces
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v2
- run: |
Expand Down