Skip to content

Commit 5c800e7

Browse files
committed
GHA: Use Ubuntu 22.04 for uploading to launchpad
Ubuntu 24.04 uses a newer bzr/brz/breezy that requires a semi-interactive login to launchpad failing CI.
1 parent 9e71607 commit 5c800e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/synchronize-launchpad.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
upload:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04 # We need bzr < 3.3 for non-interactive login
1515
steps:
1616
- name: Install dependencies
1717
run: |
@@ -34,7 +34,7 @@ jobs:
3434
(cd "$GITHUB_WORKSPACE" && git fast-export -M --all) | (cd bzr-repo && bzr fast-import -)
3535
3636
- name: Login to launchpad
37-
run: bzr launchpad-login --no-check ${{ secrets.LAUNCHPAD_USER }}
37+
run: bzr launchpad-login ${{ secrets.LAUNCHPAD_USER }}
3838

3939
- name: Upload to launchpad
4040
working-directory: bzr-repo/trunk

0 commit comments

Comments
 (0)