From 2ba411a04bb406a372c4fbe5ea81567dc3ed6128 Mon Sep 17 00:00:00 2001 From: Toutsu Date: Sat, 13 Jun 2026 20:21:57 +0300 Subject: [PATCH] ci(deploy): increase trivy image scan timeout to 30m Slow ARM64 runners hit the default timeout while initializing the container image scan after pulling. Extend the timeout so image scans can complete reliably. --- .gitea/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6979482..df6f51b 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -110,6 +110,7 @@ jobs: - name: Scan Bot image run: | trivy image \ + --timeout 30m \ --severity HIGH,CRITICAL \ --exit-code 1 \ --format table \ @@ -118,6 +119,7 @@ jobs: - name: Scan Discord Bot image run: | trivy image \ + --timeout 30m \ --severity HIGH,CRITICAL \ --exit-code 1 \ --format table \ @@ -126,6 +128,7 @@ jobs: - name: Scan Web image run: | trivy image \ + --timeout 30m \ --severity HIGH,CRITICAL \ --exit-code 1 \ --format table \