From 4114018c875583d27b1090b322bb458c363537d4 Mon Sep 17 00:00:00 2001 From: Zachary Eisinger Date: Wed, 15 Jul 2020 10:00:26 -0700 Subject: [PATCH] Update references to main branch --- .github/workflows/workflow.yml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index f0bab5e..ea946fd 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -4,7 +4,7 @@ on: pull_request: push: branches: - - master + - main - releases/* jobs: diff --git a/README.md b/README.md index 5423292..635cb91 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ See [action.yml](action.yml) Basic: ```yaml steps: -- uses: actions/checkout@master +- uses: actions/checkout@main - uses: actions/setup-dotnet@v1 with: dotnet-version: '3.1.x' # SDK Version to use; x will use the latest version of the 3.1 channel @@ -34,7 +34,7 @@ jobs: dotnet: [ '2.2.103', '3.0', '3.1.x' ] name: Dotnet ${{ matrix.dotnet }} sample steps: - - uses: actions/checkout@master + - uses: actions/checkout@main - name: Setup dotnet uses: actions/setup-dotnet@v1 with: @@ -45,7 +45,7 @@ jobs: Authentication for nuget feeds: ```yaml steps: -- uses: actions/checkout@master +- uses: actions/checkout@main # Authenticates packages to push to GPR - uses: actions/setup-dotnet@v1 with: @@ -84,7 +84,7 @@ build: env: DOTNET_NOLOGO: true steps: - - uses: actions/checkout@master + - uses: actions/checkout@main - uses: actions/setup-dotnet@v1 with: dotnet-version: '3.1.100' # SDK Version to use.