From 964b8b6628261d4938cccbb667dc0af31fbab5a7 Mon Sep 17 00:00:00 2001 From: cpanato Date: Fri, 1 Mar 2024 11:35:39 +0100 Subject: [PATCH] check to be a composite action --- wolfictl-check-updates/action.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wolfictl-check-updates/action.yaml b/wolfictl-check-updates/action.yaml index 09864f7..93b3873 100644 --- a/wolfictl-check-updates/action.yaml +++ b/wolfictl-check-updates/action.yaml @@ -16,12 +16,12 @@ inputs: default: "" runs: - using: 'docker' - image: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:70b855a7ec9cc1fabd1dfc1a7c41eea9bc7bfd402d7574e87cc80e7bb36a64bf - entrypoint: wolfictl - args: - - check - - update - - ${{ inputs.changed_files }} - env: - GITHUB_TOKEN: ${{ inputs.token }} + using: "composite" + steps: + - name: wolfictl-check-updates + uses: docker://ghcr.io/wolfi-dev/wolfictl:latest@sha256:70b855a7ec9cc1fabd1dfc1a7c41eea9bc7bfd402d7574e87cc80e7bb36a64bf + with: + entrypoint: wolfictl + args: check update ${{ inputs.changed_files }} + env: + GITHUB_TOKEN: ${{ inputs.token }}