From b9f5e93f41f68bf84ea86b4434b9602624c31bea Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Tue, 16 Apr 2024 19:55:00 +0200 Subject: [PATCH] Install yamllint through apt Signed-off-by: Noah Knegt --- .gitea/workflows/lint.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml index 1d10268..d30b23b 100644 --- a/.gitea/workflows/lint.yml +++ b/.gitea/workflows/lint.yml @@ -11,15 +11,10 @@ jobs: - name: Checkout source code uses: actions/checkout@v4 - - name: Setup python - uses: actions/setup-python@v4 - with: - python-version: "3.12.3" - - name: Install yaml-lint # As yamllint action is a composite it does not install yamllint itself run: | - python -m pip install --upgrade pip - pip install yamllint + apt update + apt install -y --no-install-recommends yamllint - name: Lint with yaml-lint uses: ibiqlik/action-yamllint@v3