From 1e1603d0f717fddc10b56f064f177361466b5db4 Mon Sep 17 00:00:00 2001 From: maxb-io <105273783+maxb-io@users.noreply.github.com> Date: Tue, 13 Jun 2023 14:56:15 +0300 Subject: [PATCH] replaces wei/wget action with real wget --- .github/workflows/sanity_check.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sanity_check.yml b/.github/workflows/sanity_check.yml index b6f346222f..1e7b00f741 100644 --- a/.github/workflows/sanity_check.yml +++ b/.github/workflows/sanity_check.yml @@ -13,7 +13,7 @@ jobs: steps: - name: pre - run: apt update && apt install -y sudo git make clang build-essential clang-format + run: apt update && apt install -y sudo git make clang build-essential clang-format wget - name: Checkout feature branch uses: actions/checkout@v2 @@ -42,9 +42,8 @@ jobs: run: pip install argparse - name: Download clang-format-diff.py - uses: wei/wget@v1 - with: - args: https://raw.githubusercontent.com/llvm/llvm-project/release/12.x/clang/tools/clang-format/clang-format-diff.py + run: | + wget https://raw.githubusercontent.com/llvm/llvm-project/release/12.x/clang/tools/clang-format/clang-format-diff.py - name: Check format run: VERBOSE_CHECK=1 make check-format