aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-10-16 11:15:52 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-10-16 11:15:52 +0200
commit787857dc98e7ffb214192a95f14518142b6619a3 (patch)
treee9162d3b72eb5b629780e045acadea49559a6a5b /.github/workflows/ci.yml
parentsort Docker containers by name (diff)
downloadlinux-status-787857dc98e7ffb214192a95f14518142b6619a3.tar.gz
linux-status-787857dc98e7ffb214192a95f14518142b6619a3.zip
workflows/ci: upgrade actions
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2fd7af1..b72f37a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,14 +9,14 @@ jobs:
test:
strategy:
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9, 3.x]
+ python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
runs-on: ubuntu-latest
name: 'Python ${{ matrix.python-version }}'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
- name: Run tests as root