From 2e82e9b9c557f525d8b084a64a46d9df348e65a3 Mon Sep 17 00:00:00 2001 From: Yousef Moazzam Date: Tue, 16 Jul 2024 19:17:49 +0100 Subject: [PATCH] Update `setup-python` version in lint workflow See https://github.com/actions/setup-python/releases/tag/v5.0.0 and https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ for more details on the node16 warning that this fixes. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1b2c973ad..d58dc06b7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: # setup Python 3.10 - name: Setup Python 3.10 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10'