From f5f50feec776fb85edc7cd8102fc1046119b6dbb Mon Sep 17 00:00:00 2001 From: Nikita Zorin <100807274+nikzor@users.noreply.github.com> Date: Mon, 27 May 2024 18:36:12 +0300 Subject: [PATCH] Add ignore flag --- .github/workflows/actionlint.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 6467421..7499f91 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -14,13 +14,8 @@ jobs: - uses: actions/checkout@v4 - name: Download actionlint id: get_actionlint - run: | - curl -sSfL https://github.com/rhysd/actionlint/releases/latest/download/actionlint_linux_amd64.zip -o actionlint.zip - unzip actionlint.zip - sudo mv actionlint /usr/local/bin + run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) shell: bash - name: Check workflow files - run: actionlint - shell: bash - - \ No newline at end of file + run: ${{ steps.get_actionlint.outputs.executable }} -color -ignore 'actions-rs/toolchain@v1' + shell: bash \ No newline at end of file