From 1b214fd25342cc55aac0d91ab7872117770903a1 Mon Sep 17 00:00:00 2001 From: "Timur M. Carstensen" <40788422+timurcarstensen@users.noreply.github.com> Date: Mon, 16 Sep 2024 14:14:30 +0200 Subject: [PATCH] fix(pre-commit.yaml): wrapping python version in quotes --- .github/workflows/pre-commit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index ed323cbb..ace7ab76 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: '3.10' - run: pip install pre-commit - run: pre-commit install - run: pre-commit run --all-files