From ba79e7540c21d210875f4448efcb1404a210c94b Mon Sep 17 00:00:00 2001 From: Milton Pividori Date: Wed, 17 Apr 2024 12:59:46 -0600 Subject: [PATCH] workflows/pytest: fix actions versions --- .github/workflows/pytest.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 70f604c6..229f8546 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -21,9 +21,9 @@ jobs: os: [ubuntu-latest, macOS-latest, windows-latest] steps: - name: Checkout git repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies