commit 7d680bc05ff354fe0d63573ea5938f235bdb2734 parent 012a0646e8a011c3668a446813cea3d4f345e9a0 Author: finwo <finwo@pm.me> Date: Sat, 28 Jan 2023 16:19:20 +0100 Changed action.yml to use composite Diffstat:
| M | action.yml | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/action.yml b/action.yml @@ -2,4 +2,7 @@ name: Setup DEP package manager description: Installs the DEP package manager into the runner runs: - main: scripts/install.sh + using: "composite" + steps: + - run: curl --location https://raw.githubusercontent.com/finwo/dep/master/dist/dep --output /usr/local/bin/dep + - run: chmod +x /usr/local/bin/dep