Skip to content

Commit 8296ff0

Browse files
committed
Use standard name for checkout step in Go release workflows
All the other template workflows use the name "Checkout repository" for their checkout step, so this one should as well for consistency.
1 parent cad1771 commit 8296ff0

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

workflow-templates/dependabot/workflow-template-copies/.github/workflows/publish-go-nightly-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- name: checkout
17+
- name: Checkout repository
1818
uses: actions/checkout@v1
1919
with:
2020
fetch-depth: 0
@@ -41,7 +41,7 @@ jobs:
4141
needs: create-nightly-artifacts
4242

4343
steps:
44-
- name: Checkout
44+
- name: Checkout repository
4545
uses: actions/checkout@v2
4646

4747
- name: Download artifacts

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-task.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- name: Checkout
14+
- name: Checkout repository
1515
uses: actions/checkout@v1
1616
with:
1717
fetch-depth: 0
@@ -44,7 +44,7 @@ jobs:
4444
needs: create-release-artifacts
4545

4646
steps:
47-
- name: Checkout
47+
- name: Checkout repository
4848
uses: actions/checkout@v2
4949

5050
- name: Download artifacts
@@ -104,7 +104,7 @@ jobs:
104104
needs: notarize-macos
105105

106106
steps:
107-
- name: Checkout
107+
- name: Checkout repository
108108
uses: actions/checkout@v2
109109

110110
- name: Download artifact

workflow-templates/publish-go-nightly-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- name: checkout
17+
- name: Checkout repository
1818
uses: actions/checkout@v1
1919
with:
2020
fetch-depth: 0
@@ -41,7 +41,7 @@ jobs:
4141
needs: create-nightly-artifacts
4242

4343
steps:
44-
- name: Checkout
44+
- name: Checkout repository
4545
uses: actions/checkout@v2
4646

4747
- name: Download artifacts

workflow-templates/release-go-task.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- name: Checkout
14+
- name: Checkout repository
1515
uses: actions/checkout@v1
1616
with:
1717
fetch-depth: 0
@@ -44,7 +44,7 @@ jobs:
4444
needs: create-release-artifacts
4545

4646
steps:
47-
- name: Checkout
47+
- name: Checkout repository
4848
uses: actions/checkout@v2
4949

5050
- name: Download artifacts
@@ -104,7 +104,7 @@ jobs:
104104
needs: notarize-macos
105105

106106
steps:
107-
- name: Checkout
107+
- name: Checkout repository
108108
uses: actions/checkout@v2
109109

110110
- name: Download artifact

0 commit comments

Comments
 (0)