From fcd31ec145bbc628b90371be381717a1498b7c12 Mon Sep 17 00:00:00 2001 From: David Hegland Date: Thu, 21 Dec 2023 07:16:04 -0600 Subject: [PATCH] Update vint.yml (#865) It looks like the vint package is not correct with python 3.12. Need to test with a different python version. --- .github/workflows/vint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vint.yml b/.github/workflows/vint.yml index 909de43a..8ee112b8 100644 --- a/.github/workflows/vint.yml +++ b/.github/workflows/vint.yml @@ -8,7 +8,9 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 + with: + python-version: '3.10' - name: Setup dependencies run: pip install vim-vint - name: Lint Vimscript