From 0490e97c96b8cd3e42a879efdb984e3b90a54d73 Mon Sep 17 00:00:00 2001 From: Pepijn Date: Thu, 9 Apr 2026 15:27:26 +0200 Subject: [PATCH] fix(ci): simplify Docker Hub login to match existing workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the conditional guard — other workflows (docker_publish, full_tests) call docker/login-action unconditionally. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/benchmark_tests.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/benchmark_tests.yml b/.github/workflows/benchmark_tests.yml index 89ea8f8c3..11943a13a 100644 --- a/.github/workflows/benchmark_tests.yml +++ b/.github/workflows/benchmark_tests.yml @@ -83,12 +83,7 @@ jobs: with: cache-binary: false - # Authenticate to Docker Hub to avoid anonymous pull rate limits - # (100 pulls/6h anonymous vs 200 pulls/6h authenticated). - name: Login to Docker Hub - if: env.DOCKERHUB_LEROBOT_USERNAME != '' - env: - DOCKERHUB_LEROBOT_USERNAME: ${{ secrets.DOCKERHUB_LEROBOT_USERNAME }} uses: docker/login-action@v3 # zizmor: ignore[unpinned-uses] with: username: ${{ secrets.DOCKERHUB_LEROBOT_USERNAME }}