1 parent bfd8ec6 commit e4cb0c2Copy full SHA for e4cb0c2
1 file changed
.github/workflows/main.yml
@@ -21,18 +21,18 @@ jobs:
21
# Sequence of tasks that will be executed as part of the job
22
steps:
23
# Checks-out repository under $GITHUB_WORKSPACE, so the job can access it
24
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
25
26
# Run using Python 3.8 for consistency and aiohttp
27
- name: Set up Python 3.8
28
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v3
29
with:
30
python-version: '3.8'
31
architecture: 'x64'
32
33
# Cache dependencies. From:
34
# https://github.com/actions/cache/blob/master/examples.md#python---pip
35
- - uses: actions/cache@v2
+ - uses: actions/cache@v3
36
37
path: ~/.cache/pip
38
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
0 commit comments