From f6165d3e30f7e27b4707779f32d2ad652e2febe4 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Tue, 5 May 2026 04:18:42 +0530 Subject: [PATCH] chore: upgrade actions/download-artifact to v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e420b3c..3e216f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,7 +123,7 @@ jobs: run: sudo apt-get update && sudo apt-get install -y iproute2 - name: Download Certificates - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ssl-certs path: certs/ @@ -137,7 +137,7 @@ jobs: # Disable cache when not using github actions because the runner spends about 3mins trying to upload the cache # TODO: setup cache server in Gitea if: ${{ github.server_url == 'https://github.com' }} - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/ms-playwright key: ${{ runner.os }}-playwright-${{ hashFiles('frontend/bun.lock') }}