Skip to content

Commit

Permalink
Lock the GitHub CI runner to a specific Ubuntu version
Browse files Browse the repository at this point in the history
We need to have control over our CI environment - we lock Fedora to a
certain version without updates, yet the underlying Ubuntu image has
been floating and causing trouble every now and then. Like just now,
with ubuntu-latest moving from 22.04 to 24.04 where sudo is somehow
broken inside our test-suite and causing totally unrelated PR's to
fail with

   sudo: PAM account management error: Authentication service cannot retrieve authentication info
   sudo: a password is required

Lock the version to Ubuntu 22.04 for now, we'll need to eventually
figure what the issue is but these things need to happen on our terms.
  • Loading branch information
pmatilai authored and dmnks committed Jan 10, 2025
1 parent 87e45cf commit 528ceb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build_and_test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 528ceb9

Please sign in to comment.