Skip to content

Commit c70a6f1

Browse files
committed
fix(ci): drop sudo in e2e-install machine-id step
The e2e-install job runs inside the flatpak-github-actions container which does not have sudo installed. The container already runs as root, so sudo is unnecessary — use dbus-uuidgen and tee directly. Assisted-by: Claude Sonnet 4.6 via OpenCode
1 parent 45a20c5 commit c70a6f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ jobs:
10571057
- name: Ensure machine-id exists
10581058
if: steps.arch-check.outputs.skip != 'true'
10591059
run: |
1060-
sudo dbus-uuidgen | sudo tee /var/lib/dbus/machine-id
1060+
dbus-uuidgen | tee /var/lib/dbus/machine-id
10611061
10621062
- name: Install ${{ matrix.app }}
10631063
if: steps.arch-check.outputs.skip != 'true'

0 commit comments

Comments
 (0)