From e4129fec633a25f7d1ef7da7d40ef6ebae8570d8 Mon Sep 17 00:00:00 2001 From: bol-van Date: Fri, 13 Feb 2026 13:35:55 +0300 Subject: [PATCH] github: upx 5.1.0 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ceac54..518f653 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -493,7 +493,7 @@ jobs: uses: crazy-max/ghaction-upx@v3 with: install-only: true - version: v4.2.4 + version: v5.1.0 - name: Prepare binaries shell: bash @@ -508,7 +508,7 @@ jobs: case $f in *.tar.xz ) tar -C $dir -xvf $f && rm $f - if [[ $dir =~ linux ]] && [[ $dir != *-linux-mips64 ]] && [[ $dir != *-linux-lexra ]] && [[ $dir != *-linux-risc ]]; then + if [[ $dir =~ linux ]] && [[ $dir != *-linux-mips64 ]] && [[ $dir != *-linux-lexra ]]; then run_upx $dir/* fi ;;