From 686a453a37db50b4dccd2ceb92818b37fceb2e49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Wieczorek?= Date: Fri, 25 Apr 2025 15:33:05 +0200 Subject: [PATCH] chore: Update actions/setup-python to v5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Action "setup-python@master" has not been updated for 5 years and is still using a deprecated version of "cache" action. Updating it to "v5" will allow successful runs of this CI stage. Fixes: #2861 Signed-off-by: Paweł Wieczorek --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7e33166291..5ef2696776 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@master + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -68,7 +68,7 @@ jobs: - if: env.CHANGED_FILES name: Set up Python - uses: actions/setup-python@master + uses: actions/setup-python@v5 with: python-version: "3.10"