From 3f20d03520b4fb5a246f2a87ad704aba5c68dd5e Mon Sep 17 00:00:00 2001 From: Mitchell R Date: Tue, 19 May 2026 05:04:20 +0200 Subject: [PATCH] ci: block-style `with:` in build.yml checkout steps (flow-style + ${{ }} parser conflict) --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f550a24..2c1b9e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,7 +63,8 @@ jobs: git config --global --add safe.directory '*' - uses: actions/checkout@v4 - with: { ref: ${{ inputs.ref }} } + with: + ref: ${{ inputs.ref }} - name: Install GTK/GStreamer/WebKit build deps run: | @@ -130,7 +131,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - with: { ref: ${{ inputs.ref }} } + with: + ref: ${{ inputs.ref }} - name: Pull kiosk aarch64 binary from this run's artifact uses: actions/download-artifact@v4