Skip to content

Commit dad251d

Browse files
docs: main branch (#1396)
Rename `master` to `main`
1 parent e8bbe5f commit dad251d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ name: "CodeQL"
1212

1313
on:
1414
push:
15-
branches: [ master ]
15+
branches: [ main ]
1616
pull_request:
1717
# The branches below must be a subset of the branches above
18-
branches: [ master ]
18+
branches: [ main ]
1919
schedule:
2020
- cron: '24 6 * * 5'
2121

.github/workflows/enforce-license-compliance.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Enforce License Compliance
22

33
on:
44
pull_request:
5-
branches: [main, master]
5+
branches: [main]
66

77
jobs:
88
enforce-license-compliance:

.github/workflows/scorecards-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
schedule:
66
- cron: '43 20 * * 1'
77
push:
8-
branches: [ master ]
8+
branches: [ main ]
99

1010
# Declare default permissions as read only.
1111
permissions: read-all

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Inside your `.github/workflows/workflow.yml` file:
3535

3636
```yaml
3737
steps:
38-
- uses: actions/checkout@master
38+
- uses: actions/checkout@main
3939
- uses: codecov/codecov-action@v4
4040
with:
4141
fail_ci_if_error: true # optional (default = false)
@@ -50,7 +50,7 @@ The Codecov token can also be passed in via environment variables:
5050
5151
```yaml
5252
steps:
53-
- uses: actions/checkout@master
53+
- uses: actions/checkout@main
5454
- uses: codecov/codecov-action@v4
5555
with:
5656
fail_ci_if_error: true # optional (default = false)
@@ -130,9 +130,9 @@ jobs:
130130
OS: ${{ matrix.os }}
131131
PYTHON: '3.10'
132132
steps:
133-
- uses: actions/checkout@master
133+
- uses: actions/checkout@main
134134
- name: Setup Python
135-
uses: actions/setup-python@master
135+
uses: actions/setup-python@main
136136
with:
137137
python-version: 3.10
138138
- name: Generate coverage report

0 commit comments

Comments
 (0)