From 9e46f064806c53001c93e6d05c665b36c762edba Mon Sep 17 00:00:00 2001 From: EED85 Date: Sun, 10 Aug 2025 08:29:13 +0200 Subject: [PATCH] fix input parameter names --- .github/actions/checkout_code/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/checkout_code/action.yml b/.github/actions/checkout_code/action.yml index 7640103..30138a9 100644 --- a/.github/actions/checkout_code/action.yml +++ b/.github/actions/checkout_code/action.yml @@ -50,9 +50,9 @@ runs: ref: ${{ inputs.ref }} path: ${{ inputs.path }} submodules: ${{ inputs.submodules }} - fetch-depth: ${{ inputs.fetch_depth }} - fetch-tags: ${{ inputs.fetch_tags }} - sparse-checkout: ${{ inputs.sparse_checkout }} + fetch-depth: ${{ inputs.fetch-depth }} + fetch-tags: ${{ inputs.fetch-tags }} + sparse-checkout: ${{ inputs.sparse-checkout }} - name: Echo files if: ${{ inputs.echo-files == 'true' }} shell: bash