From b2c56d94b7098dc853936dd0fe2815c302b00139 Mon Sep 17 00:00:00 2001 From: s3lph Date: Sun, 14 Apr 2024 19:30:46 +0200 Subject: [PATCH] fix: ci --- .forgejo/workflows/ansible-lint.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/ansible-lint.yml b/.forgejo/workflows/ansible-lint.yml index d1fed48..a51dce6 100644 --- a/.forgejo/workflows/ansible-lint.yml +++ b/.forgejo/workflows/ansible-lint.yml @@ -11,7 +11,8 @@ jobs: - uses: actions/checkout@v4 - - name: Run ansible-lint - uses: https://github.com/ansible/ansible-lint@main - with: - setup_python: false + - run: | + apt update; apt install --yes python3-pip + pip3 install --break-system-packages ansible-lint + ansible-lint +