From 2cd173cbc96d185ae6047403060a62fffc7f7edb Mon Sep 17 00:00:00 2001 From: Florian Buenzli Date: Thu, 14 May 2026 16:03:12 +0200 Subject: [PATCH] removed unused zstd from old caching stuff --- .github/actions/android-base-setup/action.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/actions/android-base-setup/action.yml b/.github/actions/android-base-setup/action.yml index 95c1676..fe1c052 100644 --- a/.github/actions/android-base-setup/action.yml +++ b/.github/actions/android-base-setup/action.yml @@ -1,7 +1,7 @@ name: Setup Android Environment description: > Base setup for Android CI jobs. Checks out the repository, sets up a JDK, - configures the Maven proxy, sets up the Gradle cache, installs zstd, + configures the Maven proxy, sets up the Gradle cache, and optionally sets up the Rust toolchain. inputs: @@ -59,10 +59,6 @@ runs: with: job-id: ${{ inputs.gradle-cache-job-id }} - - name: Install zstd - shell: bash - run: sudo apt-get install -y zstd - - name: Setup Rust toolchain if: ${{ inputs.setup-rust == 'true' }} uses: actions-rust-lang/setup-rust-toolchain@v1.15.4