From e22d29a75cc7e2f6dd6a4996901c592b54efe2f7 Mon Sep 17 00:00:00 2001 From: June Date: Sun, 8 Dec 2024 02:49:50 +0100 Subject: [PATCH] pin ansible-lint (action) to a specific version to avoid random breakage ansible-lint just broke for our repo, therefore pin it to a specific version to avoid that. --- .forgejo/workflows/lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/lint.yaml b/.forgejo/workflows/lint.yaml index 47b5a1d..1002532 100644 --- a/.forgejo/workflows/lint.yaml +++ b/.forgejo/workflows/lint.yaml @@ -24,7 +24,7 @@ jobs: # work in our environmnet. # Rather manually setup python (pip) before instead. - name: Run ansible-lint - uses: https://github.com/ansible/ansible-lint@main + uses: https://github.com/ansible/ansible-lint@v24.10.0 with: setup_python: "false" requirements_file: "requirements.yml"