From 34892830213a7c9263a34b5ec8a62eb42dc3fd8c Mon Sep 17 00:00:00 2001 From: "Marios S. Kyriakou" Date: Fri, 15 Mar 2024 12:29:02 +0200 Subject: [PATCH] Update `build_tests.yml` action to use Node.js 20 due to deprecation of Node.js 16 --- .github/workflows/build_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index 3443fe9..0b115e5 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -12,9 +12,9 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies