Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Commit 909715a

Browse files
authored
Merge pull request #92 from cclauss/patch-1
Upgrade the GitHub Action checkout
2 parents 961a0b2 + 5ea8d7b commit 909715a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pull_request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test:
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-22.04
1111
strategy:
1212
# tests can't run in parallel as they write and read data with same keys
1313
max-parallel: 1
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
# Get the code into the container
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
# Setup Python
2121
- name: Setup Python
2222
uses: actions/setup-python@v4
@@ -33,4 +33,4 @@ jobs:
3333
run: |
3434
python -m pip install --upgrade pip
3535
python -m pip install pytest pytest-asyncio aiohttp
36-
pytest tests
36+
pytest tests

0 commit comments

Comments
 (0)