-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Set main as the default branch #527
Conversation
docs/action-types.md
Outdated
@@ -32,14 +32,14 @@ jobs: | |||
os: [ubuntu-16.04, windows-2019] | |||
runs-on: ${{matrix.os}} | |||
actions: | |||
- uses: actions/setup-node@master | |||
- uses: actions/setup-node@main |
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.
would be better to pin to v1 or v2
@@ -551,7 +551,7 @@ export async function getManifestFromRepo( | |||
owner: string, | |||
repo: string, | |||
auth?: string, | |||
branch = 'master' | |||
branch = 'main' |
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.
check w/ @bryanmacfarlane
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.
Going to pull this change out and address it in another issue. We should probably default to the default branch of a repo, or force a user to specify, but I don't want to make breaking changes here right now.
#529
* set main as the default branch * revert change to tool-cache default branch * use versions where applicable
* set main as the default branch * revert change to tool-cache default branch * use versions where applicable
Resolves: #514