List all commands available within Supported Software Documentation #8135
ciscorucinski
started this conversation in
Ideas
Replies: 1 comment
-
Hey @ciscorucinski. You can collect this information yourself by listing all executable files in each directory referenced in - run: |
IFS=:
for dir in $PATH
do
for file in $dir/*
do
if [ -x $file ]
then
echo $file
fi
done
done I don't think there is a point to put a list of all available commands in documentation. Taking into account the overall amount of software that is installed on runners this list would be insanely huge. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have been checking out the Supported Software more often. This is where I knew that I could use the
jq
command without having to install it within my workflow file.However, while looking at how to do things online, I noticed that I needed access to
seq
ortr
, and it was my assumption that those were not supported software as they are not listed within the documentation at all. So I was trying to find alternative ways of doing these commands without installing them. However, I recently realized that those commands come fromcoreutils
which is supported software.I would rather prefer to google search
github actions supported software
, find the link which shows me what is available, and search forseq
orping
and see that those are in fact available to me.However, knowing that each installed package could have multiple commands available to them, if I wanted to easily know if it was supported, I would have to do a more lengthy deep dive to find a command's package and then see if that package is available with my runner (add on top of that version differences)
Beta Was this translation helpful? Give feedback.
All reactions