From 16e98c4e60cea05b7deae1b01c68504869f9a7ce Mon Sep 17 00:00:00 2001 From: Pawel Kowalik Date: Sun, 18 Feb 2024 00:53:29 +0100 Subject: [PATCH] CI: update github actions to comply with Node.js 20, add python 3.5 --- .github/workflows/test-and-publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index dddf939..92e28da 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -16,6 +16,8 @@ jobs: include: - python-version: 2.7 os: ubuntu-18.04 + - python-version: 3.5 + os: ubuntu-20.04 - python-version: 3.6 os: ubuntu-20.04 - python-version: 3.7 @@ -32,10 +34,10 @@ jobs: os: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}