From fdb44c22979ecc3a07eab0971a57842087e1fc60 Mon Sep 17 00:00:00 2001 From: Carlos Eduardo Arango Gutierrez Date: Mon, 30 Mar 2026 18:03:18 +0200 Subject: [PATCH] ci: update periodic cleanup to v0.3.0 and add manual trigger The periodic cleanup workflow was failing because it referenced NVIDIA/holodeck@v0.2.18 which did not have the cleanup action inputs (action, vpc_ids, aws_region, force_cleanup). Update to v0.3.0 which has the correct inputs. Also add workflow_dispatch trigger so cleanup can be run manually when VPC limits are hit during CI. Signed-off-by: Carlos Eduardo Arango Gutierrez --- .github/workflows/periodic.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/periodic.yaml b/.github/workflows/periodic.yaml index edf535b25..a6b6e0e85 100644 --- a/.github/workflows/periodic.yaml +++ b/.github/workflows/periodic.yaml @@ -4,6 +4,7 @@ name: Periodic actions # It uses the holodeck cleanup command to remove VPCs tagged with Project=holodeck and Environment=cicd on: + workflow_dispatch: {} schedule: - cron: '0 0,12 * * *' # Runs daily at 12AM and 12PM @@ -38,7 +39,7 @@ jobs: - name: Clean up VPCs if: steps.identify-resources.outputs.AWS_VPC_IDS != '' - uses: NVIDIA/holodeck@v0.2.18 + uses: NVIDIA/holodeck@v0.3.0 with: action: cleanup vpc_ids: ${{ steps.identify-resources.outputs.AWS_VPC_IDS }}