-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nested quarto action in setup-r-dependencies@v2
breaks workflow in restricted Organization setup
#901
Comments
That is a pretty weird policy, considering, that these tags are merely labels, that can be changed later, whether they are minor release versions or not. But I guess we can use a minor version of that action, no problem.
I am fairly sure that you cannot parameterize action versions. The action versions of a workflow run are resolved up front, before any parameters are considered. |
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue and include a link to this issue |
Is your feature request related to a problem? Please describe.
My GitHub Organization only allows to use specific minor release versions (
vX.X.X
) of untrusted third-party actions, and they consider thatquarto-dev/quarto-actions/setup
falls under this category (r-lib
actions do not). Thus the nestedquarto-dev/quarto-actions/setup@v2
action insetup-r-dependencies@v2.10.0
introduced in 67f8747 causes all workflows to fail due to the version used for the quarto action. This occurs even if we setinstall-quarto: false
, since the workflow will first check if all the actions required by a given action can be downloaded.Describe the solution you'd like
If this dependency in
quarto-dev/quarto-actions/setup
is desirable, a solution would be to include an input parameter inr-lib/actions/setup-r-dependencies
for specifying the version of the quarto action.Describe alternatives you've considered
We could use
setup-r-dependencies@v2.9.0
but we would be stuck with an outdated action forever.The text was updated successfully, but these errors were encountered: