From 102d76abd4e18baced576725201daa90033646c3 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Tue, 5 May 2026 00:40:05 +0530 Subject: [PATCH] fix: install iproute2 in CI workflow --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90defe8..29f2aed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,6 +117,9 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install Networking Tools + run: sudo apt-get update && sudo apt-get install -y iproute2 + - name: Download Certificates uses: actions/download-artifact@v3 with: @@ -131,7 +134,7 @@ jobs: - name: Cache Playwright id: playwright-cache - uses: actions/cache@v4 + uses: actions/cache@v3 with: path: ~/.cache/ms-playwright key: ${{ runner.os }}-playwright-${{ hashFiles('frontend/bun.lock') }}