Skip to content
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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

thrijith
Copy link
Member

Description of the Change

  • Update action examples to install svn

Closes #151

Checklist:

@thrijith thrijith requested a review from a team as a code owner October 24, 2024 12:33
@thrijith thrijith requested review from iamdharmesh and jeffpaul and removed request for a team October 24, 2024 12:33
@jeffpaul jeffpaul added this to the 2.3.0 milestone Oct 24, 2024
@jeffpaul jeffpaul removed their request for review October 24, 2024 14:23
Copy link
Member

@iamdharmesh iamdharmesh left a 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.

Comment on lines +58 to +59
- name: Install SVN ( Subversion )
run: sudo apt-get install subversion
Copy link
Member

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.

Suggested change
- name: Install SVN ( Subversion )
run: sudo apt-get install subversion
- name: Install SVN ( Subversion )
run: |
sudo apt-get update
sudo apt-get install subversion

Comment on lines +17 to +18
- name: Install SVN ( Subversion )
run: sudo apt-get install subversion
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above.

Comment on lines +16 to +17
- name: Install SVN ( Subversion )
run: sudo apt-get install subversion
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ubuntu-latest lo longer comes with SVN installed
3 participants