Replies: 1 comment
-
Hello |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
There are a number of breaking changes introduced with version 4 that you should be aware of when migrating your version 3 workflows to version 4. If you have any issues or questions please leave a note before and I'll do my best to help. If you think you've discovered a bug please open an issue.
General
All inputs should now be lower cased using kebab casing. If your previous input was
GIT_CONFIG_NAME
it should now begit-config-name
.PRESERVE
andLFS
have been deprecated.The
clean-exclude
input has had a syntax change. It's now a multiline string with eachline representing the file or folder you'd like to exclude.Tokens
ACCESS_TOKEN
andGITHUB_TOKEN
inputs are deprecated and can no longer be used. If you used either of these deployment tokens you can now pass either in astoken
. If you used a GitHub token previously you can also omittoken
from your workflow entirely as that's the default value of the field now.SSH
has been replaced withssh-key
. If you use another action to setup your SSH client you can set this value totrue
. You can also now pass in an SSH private key as a secret with a pairing repository deployment key and the action will set it up for you. For more details please check out the README.Beta Was this translation helpful? Give feedback.
All reactions