diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml index 042f25d08429..4d9ad7ae102a 100644 --- a/.github/workflows/smoke.yml +++ b/.github/workflows/smoke.yml @@ -257,13 +257,22 @@ jobs: LOCAL_GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | set -o pipefail - ./dependabot test \ - -f=smoke.yaml \ - -o=result.yaml \ - --cache=cache \ - --timeout=20m \ - --updater-image=ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:latest \ - 2>&1 | tee -a log.txt + if [[ "${{matrix.suite.name}}" == "docker" ]]; then + ./dependabot test \ + -f=smoke.yaml \ + -o=result.yaml \ + --timeout=20m \ + --updater-image=ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:latest \ + 2>&1 | tee -a log.txt + else + ./dependabot test \ + -f=smoke.yaml \ + -o=result.yaml \ + --cache=cache \ + --timeout=20m \ + --updater-image=ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:latest \ + 2>&1 | tee -a log.txt + fi - name: Diff if: always()