fix: bug passing invalid patterns to grep (#453)
This commit is contained in:
parent
6402474c46
commit
72aab29255
@ -147,11 +147,12 @@ runs:
|
|||||||
INPUT_PATH: ${{ inputs.path }}
|
INPUT_PATH: ${{ inputs.path }}
|
||||||
INPUT_USE_FORK_POINT: ${{ inputs.use_fork_point }}
|
INPUT_USE_FORK_POINT: ${{ inputs.use_fork_point }}
|
||||||
- name: Glob match
|
- name: Glob match
|
||||||
uses: tj-actions/glob@v7.12
|
uses: tj-actions/glob@v7.14
|
||||||
id: glob
|
id: glob
|
||||||
with:
|
with:
|
||||||
files: ${{ inputs.files }}
|
files: ${{ inputs.files }}
|
||||||
files-separator: ${{ inputs.files_separator }}
|
files-separator: ${{ inputs.files_separator }}
|
||||||
|
escape-paths: true
|
||||||
excluded-files: ${{ inputs.files_ignore }}
|
excluded-files: ${{ inputs.files_ignore }}
|
||||||
excluded-files-separator: ${{ inputs.files_ignore_separator }}
|
excluded-files-separator: ${{ inputs.files_ignore_separator }}
|
||||||
files-from-source-file: ${{ inputs.files_from_source_file }}
|
files-from-source-file: ${{ inputs.files_from_source_file }}
|
||||||
@ -159,7 +160,7 @@ runs:
|
|||||||
working-directory: ${{ inputs.path }}
|
working-directory: ${{ inputs.path }}
|
||||||
base-sha: ${{ steps.changed-files-diff-sha.outputs.previous_sha }}
|
base-sha: ${{ steps.changed-files-diff-sha.outputs.previous_sha }}
|
||||||
sha: ${{ steps.changed-files-diff-sha.outputs.current_sha }}
|
sha: ${{ steps.changed-files-diff-sha.outputs.current_sha }}
|
||||||
include-deleted-files: "true"
|
include-deleted-files: true
|
||||||
separator: "|"
|
separator: "|"
|
||||||
- run: |
|
- run: |
|
||||||
bash $GITHUB_ACTION_PATH/entrypoint.sh
|
bash $GITHUB_ACTION_PATH/entrypoint.sh
|
||||||
|
Loading…
x
Reference in New Issue
Block a user