File tree Expand file tree Collapse file tree 7 files changed +16
-10
lines changed Expand file tree Collapse file tree 7 files changed +16
-10
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " github-actions" # See documentation for possible values
4
+ directory : " /" # Location of package manifests
5
+ schedule :
6
+ interval : " weekly"
Original file line number Diff line number Diff line change 39
39
40
40
steps :
41
41
- name : Checkout repository
42
- uses : actions/checkout@v2
42
+ uses : actions/checkout@v4
43
43
44
44
# Initializes the CodeQL tools for scanning.
45
45
- name : Initialize CodeQL
Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
if : github.event.repository.fork == false
10
10
steps :
11
- - uses : actions/checkout@v3
11
+ - uses : actions/checkout@v4
12
12
with :
13
13
fetch-depth : 0
14
- - uses : actions/setup-python@v4
14
+ - uses : actions/setup-python@v5
15
15
with :
16
16
python-version : " 3.10"
17
17
- uses : actions/cache@v3
Original file line number Diff line number Diff line change 5
5
name : runner / Pre-commit actions
6
6
runs-on : ubuntu-latest
7
7
steps :
8
- - uses : actions/checkout@v3
8
+ - uses : actions/checkout@v4
9
9
- name : Set up Python 3.10
10
- uses : actions/setup-python@v4
10
+ uses : actions/setup-python@v5
11
11
with :
12
12
python-version : ' 3.10'
13
13
- name : Setup annotations
Original file line number Diff line number Diff line change 24
24
RUN_TESTBOT : true
25
25
26
26
steps :
27
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
28
28
- name : Set up Python ${{ matrix.python-version }}
29
- uses : actions/setup-python@v2.3.1
29
+ uses : actions/setup-python@v5
30
30
with :
31
31
python-version : ${{ matrix.python-version }}
32
32
cache : ' pip'
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
if : " !github.event.release.prerelease"
16
16
steps :
17
17
- name : Check out repository
18
- uses : actions/checkout@v2
18
+ uses : actions/checkout@v4
19
19
20
20
- name : Set up Python
21
- uses : actions/setup-python@v2
21
+ uses : actions/setup-python@v5
22
22
with :
23
23
python-version : ' 3.10'
24
24
Original file line number Diff line number Diff line change @@ -1256,7 +1256,7 @@ async def wait_for_component(
1256
1256
async def _check (event : events .Component ) -> bool :
1257
1257
ctx : ComponentContext = event .ctx
1258
1258
# if custom_ids is empty or there is a match
1259
- wanted_message = not message_ids or ctx .message . id in (
1259
+ wanted_message = not message_ids or ctx .message_id in (
1260
1260
[message_ids ] if isinstance (message_ids , int ) else message_ids
1261
1261
)
1262
1262
wanted_component = not custom_ids or ctx .custom_id in custom_ids
You can’t perform that action at this time.
0 commit comments