From 5fc7f86c463ee2ec3926fbdddbd6ec435652fbd1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Apr 2026 14:18:53 +0000 Subject: [PATCH] Add retry logic to setup-ffmpeg step in CI workflow Agent-Logs-Url: https://github.com/bramp/ffmpeg-cli-wrapper/sessions/4e592dd3-d85a-4b4f-9af0-72aa8448635f Co-authored-by: bramp <160627+bramp@users.noreply.github.com> --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 074ad9c4..81afc3d4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,9 +39,12 @@ jobs: - uses: actions/checkout@v6 - name: Set up FFmpeg - uses: FedericoCarboni/setup-ffmpeg@v3 + uses: Wandalen/wretry.action@v3.8.0 with: - ffmpeg-version: release + action: FedericoCarboni/setup-ffmpeg@v3 + attempt_limit: 3 + attempt_delay: 5000 + with: '{ "ffmpeg-version": "release" }' - name: Set up JDK ${{ matrix.java-version }} uses: actions/setup-java@v5