From 9f1276c82a313493d162c841dbc1b0c899da3159 Mon Sep 17 00:00:00 2001 From: Benno Lossin Date: Sun, 13 Apr 2025 21:51:44 +0200 Subject: [PATCH] ci: fix kernel workflow syntax Signed-off-by: Benno Lossin --- .github/workflows/kernel.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 61d8cd4d..6a0b6ca2 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -11,13 +11,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - ref: kernel - path: pin-init + with: + ref: kernel + path: pin-init - uses: actions/checkout@v4 - repository: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git - ref: master - path: kernel - fetch-depth: 1 + with: + repository: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git + ref: master + path: kernel + fetch-depth: 1 - run: | cp -r kernel/rust/pin-init . git diff --quiet && git diff --cached --quiet && [ -z "$(git ls-files --others --exclude-standard)" ]