File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,18 @@ jobs:
21
21
# Sequence of tasks that will be executed as part of the job
22
22
steps :
23
23
# Checks-out repository under $GITHUB_WORKSPACE, so the job can access it
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v4
25
25
26
26
# Run using Python 3.8 for consistency and aiohttp
27
- - name : Set up Python 3.8
28
- uses : actions/setup-python@v2
27
+ - name : Set up Python 3.12
28
+ uses : actions/setup-python@v5
29
29
with :
30
- python-version : ' 3.8 '
30
+ python-version : ' 3.12 '
31
31
architecture : ' x64'
32
32
33
33
# Cache dependencies. From:
34
34
# https://github.com/actions/cache/blob/master/examples.md#python---pip
35
- - uses : actions/cache@v2
35
+ - uses : actions/cache@v4
36
36
with :
37
37
path : ~/.cache/pip
38
38
key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
You can’t perform that action at this time.
0 commit comments