Skip to content

Commit 0af1937

Browse files
authored
Merge pull request #1 from cclauss/patch-1
Upgrade GitHub Actions
2 parents 574f286 + e84e3f5 commit 0af1937

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@v4
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@v4
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)