From 7a632480342b14f92f5a17ad48ba22801f5c3796 Mon Sep 17 00:00:00 2001 From: pigeonmoelleux Date: Sun, 23 Jun 2024 00:45:09 +0200 Subject: [PATCH] ci: debian -> markdownlint/markdownlint --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4db3a39..120b13c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,12 +1,10 @@ stages: [ style ] default: - image: debian:latest + image: markdownlint/markdownlint:0.13.0 interruptible: true style: stage: style script: - - apt-get update - - apt-get install -y ruby-mdl - if [[ $(mdl .) ]]; then true; else false; fi