From 3ecaeb9747720d19afa10d1183112d06ea721680 Mon Sep 17 00:00:00 2001 From: nilomr Date: Tue, 12 Nov 2024 15:50:42 +0000 Subject: [PATCH] Update GitHub Actions to use latest versions of checkout and setup-python --- .github/workflows/ci-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index debd88e..6da814d 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -18,12 +18,12 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Fetch all history and tags - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.9"