From a9d178efd486bb69878ce23deeb9bb13162c34e2 Mon Sep 17 00:00:00 2001 From: Andrey Lepekhin Date: Fri, 22 Dec 2023 16:56:07 +0300 Subject: [PATCH] updated checkout and setup python action versions --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5a427e3..2918d73 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,9 +6,9 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Linting @@ -22,7 +22,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [ 3.8, 3.9, '3.10', 3.11 ] + python-version: [ '3.8', '3.9', '3.10', '3.11' ] steps: - uses: actions/checkout@master - name: Set up Python ${{ matrix.python-version }}