File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ name: "CodeQL"
12
12
13
13
on :
14
14
push :
15
- branches : [ master ]
15
+ branches : [ main ]
16
16
pull_request :
17
17
# The branches below must be a subset of the branches above
18
- branches : [ master ]
18
+ branches : [ main ]
19
19
schedule :
20
20
- cron : ' 24 6 * * 5'
21
21
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Enforce License Compliance
2
2
3
3
on :
4
4
pull_request :
5
- branches : [main, master ]
5
+ branches : [main]
6
6
7
7
jobs :
8
8
enforce-license-compliance :
Original file line number Diff line number Diff line change 5
5
schedule :
6
6
- cron : ' 43 20 * * 1'
7
7
push :
8
- branches : [ master ]
8
+ branches : [ main ]
9
9
10
10
# Declare default permissions as read only.
11
11
permissions : read-all
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Inside your `.github/workflows/workflow.yml` file:
35
35
36
36
``` yaml
37
37
steps :
38
- - uses : actions/checkout@master
38
+ - uses : actions/checkout@main
39
39
- uses : codecov/codecov-action@v4
40
40
with :
41
41
fail_ci_if_error : true # optional (default = false)
@@ -50,7 +50,7 @@ The Codecov token can also be passed in via environment variables:
50
50
51
51
` ` ` yaml
52
52
steps :
53
- - uses : actions/checkout@master
53
+ - uses : actions/checkout@main
54
54
- uses : codecov/codecov-action@v4
55
55
with :
56
56
fail_ci_if_error : true # optional (default = false)
@@ -130,9 +130,9 @@ jobs:
130
130
OS: ${{ matrix.os }}
131
131
PYTHON: '3.10'
132
132
steps:
133
- - uses: actions/checkout@master
133
+ - uses: actions/checkout@main
134
134
- name: Setup Python
135
- uses: actions/setup-python@master
135
+ uses: actions/setup-python@main
136
136
with:
137
137
python-version: 3.10
138
138
- name: Generate coverage report
You can’t perform that action at this time.
0 commit comments