From 1d5b0b9e95539ec5af44def19c215f4a99850f52 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 20 Aug 2025 18:52:20 +0200 Subject: [PATCH] actions/checkout: remove unused input types The two as-at inputs, were not boolean anymore, but GHA didn't complain. Input types are actually not a thing for composite actions - they are only documented for callable workflows. (cherry picked from commit f01b6b4754c46d89f40e5d4be5539ad066558dd7) --- .github/actions/checkout/action.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/actions/checkout/action.yml b/.github/actions/checkout/action.yml index 751eef7600cd..a07edb097d7b 100644 --- a/.github/actions/checkout/action.yml +++ b/.github/actions/checkout/action.yml @@ -5,13 +5,10 @@ description: 'Checkout into trusted / untrusted / pinned folders consistently.' inputs: merged-as-untrusted-at: description: "Whether and which SHA to checkout for the merge commit in the ./untrusted folder." - type: boolean pinned-from: description: "Whether to checkout the pinned nixpkgs for CI and from where (trusted, untrusted)." - type: string target-as-trusted-at: description: "Whether and which SHA to checkout for the target commit in the ./trusted folder." - type: boolean runs: using: composite