Hello @rhysd
Thanks for all the work you're putting into this very useful project.
We have recently noticed deprecation messages when calling actions/create-github-app-token@v3 as app-id should be replaced with client-id.
Unfortunately, it seems they introduced this change in v3.1.0: https://github.com/actions/create-github-app-token/blob/v3.1.0/action.yml
But the popular_actions.go file was updated before that (in 875f98c) and at this point the action was on v3.0.0 which didn't have this change: https://github.com/actions/create-github-app-token/blob/v3.0.0/action.yml
This means the linter fails when calling the action with the non-deprecated setting as app-id is wrongly recognized as required and client-id is wrongly recognized as invalid.
There has been a number of update to the file since then but I guess the script doesn't attempt to refresh the file as this would be wasteful in most cases.
Would it be possible to regenerate the inputs for this particular action?
Thanks again!
Hello @rhysd
Thanks for all the work you're putting into this very useful project.
We have recently noticed deprecation messages when calling actions/create-github-app-token@v3 as
app-idshould be replaced withclient-id.Unfortunately, it seems they introduced this change in v3.1.0: https://github.com/actions/create-github-app-token/blob/v3.1.0/action.yml
But the popular_actions.go file was updated before that (in 875f98c) and at this point the action was on v3.0.0 which didn't have this change: https://github.com/actions/create-github-app-token/blob/v3.0.0/action.yml
This means the linter fails when calling the action with the non-deprecated setting as
app-idis wrongly recognized as required andclient-idis wrongly recognized as invalid.There has been a number of update to the file since then but I guess the script doesn't attempt to refresh the file as this would be wasteful in most cases.
Would it be possible to regenerate the inputs for this particular action?
Thanks again!