From 36188d30d9268a7b7569ec9be227a1d4b16046af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Thu, 24 Sep 2020 19:03:38 +0200 Subject: [PATCH] ci: Fix apt install call in `check` workflow --- .github/workflows/check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 372a4754..1b46541b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -12,9 +12,9 @@ jobs: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Install pip - run: sudo apt update && sudo apt install -y python3-pip python3-setuptools gpg + run: sudo apt update && sudo apt install -y python3-pip python3-setuptools gpg wget - name: Install tool dependencies - run: sudo python3 -m pip install capstone colorama cxxfilt pyelftools wget + run: sudo python3 -m pip install capstone colorama cxxfilt pyelftools - name: Download executable run: wget https://static.zeldamods.org/botw/16A91992BBA71201E98756F3BC8F5D2F.elf.gpg - name: Decrypt executable