-
Notifications
You must be signed in to change notification settings - Fork 94
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
Update action examples to install svn #155
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @thrijith,
Thanks a lot for the PR, it looks good to me. Just a minor suggestion around installing the package, based on GH action docs. Could you please check it once?
Thank you.
- name: Install SVN ( Subversion ) | ||
run: sudo apt-get install subversion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is better to run sudo apt-get update
before installing a package. As suggested in a note here.
- name: Install SVN ( Subversion ) | |
run: sudo apt-get install subversion | |
- name: Install SVN ( Subversion ) | |
run: | | |
sudo apt-get update | |
sudo apt-get install subversion |
- name: Install SVN ( Subversion ) | ||
run: sudo apt-get install subversion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above.
- name: Install SVN ( Subversion ) | ||
run: sudo apt-get install subversion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above.
Description of the Change
Closes #151
Checklist: