Use radare 6.1.0 in workflow

This commit is contained in:
Flawed
2026-02-23 01:23:58 -08:00
parent 471050a412
commit 97658681c6
+3 -2
View File
@@ -41,8 +41,9 @@ jobs:
- name: Install Analysis Tools - name: Install Analysis Tools
if: steps.versions.outputs.is_new == 'true' if: steps.versions.outputs.is_new == 'true'
run: | run: |
sudo apt-get update curl -L -o radare2.deb https://github.com/radareorg/radare2/releases/download/6.1.0/radare2_6.1.0_amd64.deb
sudo apt-get install -y radare2 sudo dpkg -i radare2.deb || sudo apt-get install -f -y
rm radare2.deb
- name: Install Python Dependencies - name: Install Python Dependencies
if: steps.versions.outputs.is_new == 'true' if: steps.versions.outputs.is_new == 'true'