From 49b7fc2d8033219f813e7ab5fe1ccb7965dd8d02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0ach?= Date: Fri, 18 Oct 2024 08:58:04 +0200 Subject: [PATCH] Use the actions_branch variable to be used for actions checkout. --- .github/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5fb53c8fc7..0bfc69d08e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,8 @@ jobs: build_osx: uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master secrets: inherit + with: + actions_branch: master build_osx_asan: uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master @@ -15,14 +17,19 @@ jobs: needs: build_osx with: with_asan: true + actions_branch: master build_win: uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_windows.yml@master secrets: inherit + with: + actions_branch: master build_flatpak: uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master secrets: inherit + with: + actions_branch: master build_flatpak_asan: uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master @@ -30,3 +37,4 @@ jobs: needs: build_flatpak with: with_asan: true + actions_branch: master