From f125d36730a1b2887f468aaf76c7c11d838a8715 Mon Sep 17 00:00:00 2001 From: James Butler Date: Tue, 12 Mar 2024 10:32:23 -0400 Subject: [PATCH] CI: Fix python version warning in setup-python action Warning: The `python-version` input is not set. The version of Python currently in `PATH` will be used. --- .github/workflows/lint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9afa91e1e..247149047 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,4 +18,6 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 + with: + python-version: '3.9' - uses: pre-commit/action@v3.0.0