From b41912786f9b76e0c3245c4dc9d672f92f68b2b9 Mon Sep 17 00:00:00 2001 From: Atul Singh Date: Fri, 24 May 2024 12:37:09 +0200 Subject: [PATCH] update: actions checkout and setup-python version --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 51b320c..a887138 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -11,11 +11,11 @@ jobs: steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Setup Python (faster than using Python container) - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: "3.11.3"