From 151d03dca4e16cacfcaf140c7aba3e4b7cb53099 Mon Sep 17 00:00:00 2001 From: Essi Alizadeh <30320825+e-alizadeh@users.noreply.github.com> Date: Tue, 20 Feb 2024 22:29:01 -0500 Subject: [PATCH] update GitHub actions to use node20 use `checkout@v4` and `setup-python@v5` actions --- .github/workflows/automation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automation.yml b/.github/workflows/automation.yml index 1c9bcff..a0d7634 100644 --- a/.github/workflows/automation.yml +++ b/.github/workflows/automation.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - name: 🍽️ Checkout the repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 - name: 🐍 Set up Python 3.8 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.8'