From fc5fc66d5fd3ac49689e5ee26fa31c218ab8917f Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Thu, 13 Nov 2025 13:06:25 +0100 Subject: [PATCH] Use a composite action This is an attempt to see if this is faster than a Go action. --- action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 285e2b8..ca38875 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,8 @@ name: 'Watchtower Update' description: 'Automatically triggers Watchtower to scan for new images' runs: - using: 'go' - main: 'main.go' + using: 'composite' + steps: + - name: Trigger Watchtower Update + run: | + curl -H "Authorization: Bearer mytoken" https://watchtower.seeseepuff.be/v1/update