From f13c5afc6394edfd6b5de823fc286118415b11a7 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 19 Oct 2025 08:34:16 -0500 Subject: [PATCH] workflow/lint: drop setup-python, ineffective at caching --- .forgejo/workflows/lint.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 0d1e965..70cb223 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -22,11 +22,6 @@ jobs: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - cache: 'pip' - pip-install: ansible-core ansible-lint - - name: cache '.ansible/collections' id: cache-collections uses: actions/cache@v4 @@ -34,8 +29,9 @@ jobs: path: /root/.ansible key: zfs_dkms-dot-ansible - - name: ansible collections + - name: ansible+collections run: | + pip install --no-compile ansible-core ansible-lint ansible-galaxy collection install -r meta/requirements.yml - name: ansible-lint