From 38803df0e83e1c03cd292548b073b76cb735470f 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 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action.yaml b/action.yaml index 95c5a1ee26..79607de6e0 100644 --- a/action.yaml +++ b/action.yaml @@ -82,6 +82,12 @@ 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: |