dep

Package manager for embedded C libraries
git clone git://git.finwo.net/app/dep
Log | Files | Refs | README | LICENSE

commit 82bd7520f9d1b1fa392c455e5653ebb024a3599c
parent e3eab5f4c6d9ea58bcc73dbdca7b7cab5163a0f7
Author: finwo <finwo@pm.me>
Date:   Sat, 28 Jan 2023 17:11:31 +0100

Using cp instead of curl to install dep in action.yml

Diffstat:
Maction.yml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/action.yml b/action.yml @@ -4,7 +4,7 @@ description: Installs the DEP package manager into the runner runs: using: "composite" steps: - - run: curl --location https://raw.githubusercontent.com/finwo/dep/master/dist/dep --output /usr/local/bin/dep + - run: cp dist/dep /usr/local/bin/dep shell: bash - run: chmod +x /usr/local/bin/dep shell: bash