diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:15:52 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 11:15:52 +0200 |
commit | 787857dc98e7ffb214192a95f14518142b6619a3 (patch) | |
tree | e9162d3b72eb5b629780e045acadea49559a6a5b | |
parent | sort Docker containers by name (diff) | |
download | linux-status-787857dc98e7ffb214192a95f14518142b6619a3.tar.gz linux-status-787857dc98e7ffb214192a95f14518142b6619a3.zip |
workflows/ci: upgrade actions
-rw-r--r-- | .github/workflows/ci.yml | 6 |
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 |