Skip to content

Commit

Permalink
docs: main branch (#1396)
Browse files Browse the repository at this point in the history
Rename `master` to `main`
  • Loading branch information
marcobiedermann committed Apr 30, 2024
1 parent e8bbe5f commit dad251d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -12,10 +12,10 @@ name: "CodeQL"

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches: [ main ]
schedule:
- cron: '24 6 * * 5'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/enforce-license-compliance.yml
Expand Up @@ -2,7 +2,7 @@ name: Enforce License Compliance

on:
pull_request:
branches: [main, master]
branches: [main]

jobs:
enforce-license-compliance:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards-analysis.yml
Expand Up @@ -5,7 +5,7 @@ on:
schedule:
- cron: '43 20 * * 1'
push:
branches: [ master ]
branches: [ main ]

# Declare default permissions as read only.
permissions: read-all
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -35,7 +35,7 @@ Inside your `.github/workflows/workflow.yml` file:

```yaml
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
Expand All @@ -50,7 +50,7 @@ The Codecov token can also be passed in via environment variables:

```yaml
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
Expand Down Expand Up @@ -130,9 +130,9 @@ jobs:
OS: ${{ matrix.os }}
PYTHON: '3.10'
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@master
uses: actions/setup-python@main
with:
python-version: 3.10
- name: Generate coverage report
Expand Down

0 comments on commit dad251d

Please sign in to comment.