We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 574f286 + e84e3f5 commit 0af1937Copy full SHA for 0af1937
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@v4
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@v4
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