diff --git a/.github/workflows/prefer-typescript.yml b/.github/workflows/prefer-typescript.yml index d2fff6e4565b0..c6bab635590e3 100644 --- a/.github/workflows/prefer-typescript.yml +++ b/.github/workflows/prefer-typescript.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Get changed files id: changed - uses: trilom/file-changes-action@master + uses: trilom/file-changes-action@v1.2.4 with: githubToken: ${{ secrets.GITHUB_TOKEN }} @@ -21,7 +21,9 @@ jobs: js_files_added() { jq -r ' map( - select((endswith(".js") or endswith(".jsx")) + select( + endswith(".js") or endswith(".jsx") + ) ) | join("\n") ' ${HOME}/files_added.json }