Skip to content

Commit e4cb0c2

Browse files
Update main.yml
1 parent bfd8ec6 commit e4cb0c2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ jobs:
2121
# Sequence of tasks that will be executed as part of the job
2222
steps:
2323
# Checks-out repository under $GITHUB_WORKSPACE, so the job can access it
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
# Run using Python 3.8 for consistency and aiohttp
2727
- name: Set up Python 3.8
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v3
2929
with:
3030
python-version: '3.8'
3131
architecture: 'x64'
3232

3333
# Cache dependencies. From:
3434
# https://github.com/actions/cache/blob/master/examples.md#python---pip
35-
- uses: actions/cache@v2
35+
- uses: actions/cache@v3
3636
with:
3737
path: ~/.cache/pip
3838
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)