File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ name: "CodeQL"
1212
1313on :
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
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Enforce License Compliance
22
33on :
44 pull_request :
5- branches : [main, master ]
5+ branches : [main]
66
77jobs :
88 enforce-license-compliance :
Original file line number Diff line number Diff line change 55 schedule :
66 - cron : ' 43 20 * * 1'
77 push :
8- branches : [ master ]
8+ branches : [ main ]
99
1010# Declare default permissions as read only.
1111permissions : read-all
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Inside your `.github/workflows/workflow.yml` file:
3535
3636``` yaml
3737steps :
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
5252steps :
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
You can’t perform that action at this time.
0 commit comments