From d159f3239fe80ed1e071f019cebe72abd0632785 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 18 Jul 2023 05:08:58 +0200 Subject: [PATCH] actions/checkout@v2 # V2, NOT v3 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 18e93d2e..2e35bf7d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,10 +21,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout PyYAML - uses: actions/checkout@v3 + uses: actions/checkout@v2 # V2, NOT v3 - name: Install a python - uses: actions/setup-python@v2 # V2, NOT v4 + uses: actions/setup-python@v4 with: python-version: 3.x