From cf5bef2ef95762d249b4e3e4ffb174987f7cb186 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Fri, 17 Jan 2025 14:10:50 +0100 Subject: [PATCH] action: Fix up $PATH as a workaround Can be removed once https://github.com/actions/runner-images/issues/11414 is addressed. --- action.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yaml b/action.yaml index 95c5a1ee2..edd9f0369 100644 --- a/action.yaml +++ b/action.yaml @@ -82,6 +82,11 @@ runs: mkdir -p $HOME/.local/bin ln -svf ${{ github.action_path }}/bin/mkosi $HOME/.local/bin/mkosi + # TODO: Remove when https://github.com/actions/runner-images/issues/11414 is fixed. + - name: Fix $PATH + shell: bash + run: echo "PATH=$HOME/.local/bin:$PATH" >>"$GITHUB_ENV" + - name: Dependencies shell: bash run: |