Skip to content

Commit

Permalink
Pin GHA runner to Ubuntu 22.04
Browse files Browse the repository at this point in the history
24.04 requires
- pip install --break-system-packages
- sbuild complains about invalid password
  • Loading branch information
rhaschke committed Sep 27, 2024
1 parent 8ece367 commit 7364de4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ env:

jobs:
debs:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: build debs
outputs:
LATEST_PACKAGE: ${{ steps.build.outputs.LATEST_PACKAGE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:

jobs:
sanity:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -38,7 +38,7 @@ jobs:
name: pre-commit

unittests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ concurrency:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: (inputs.DEPLOY_URL || vars.DEPLOY_URL) && (inputs.DEBS_ARTIFACT_NAME != 'skip')
env:
DEBUG_BASH: ${{ secrets.ACTIONS_STEP_DEBUG && 'true' || 'false' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:

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

steps:
- uses: rhaschke/docker-run-action@main
Expand Down

0 comments on commit 7364de4

Please sign in to comment.