Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCheckstyle action #1966
Checkstyle action #1966
Conversation
@cclauss Can you help me fix this problem. I have changed version to |
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 # v1, NOT v2 | ||
- uses: actions/checkout@master |
cclauss
Nov 2, 2020
Member
- The actions/checkout repo uses
main
, not master
as its principal branch so that it can be politically correct.
- The comment says that we want to use v1, not something later because we are pushing to a branch.
- Sweeping error conditions under the rug with
|| true
is going to hide where problems arise in this process.
- The actions/checkout repo uses
main
, notmaster
as its principal branch so that it can be politically correct. - The comment says that we want to use v1, not something later because we are pushing to a branch.
- Sweeping error conditions under the rug with
|| true
is going to hide where problems arise in this process.
Describe your change:
References
Checklist:
Fixes: #{$ISSUE_NO}
.