From e9cd91b3bddcbbcf40775b0aa8b985488a7c45ab Mon Sep 17 00:00:00 2001 From: ChrisLiu Date: Thu, 4 Jul 2024 20:05:57 +0800 Subject: [PATCH] update ci markdownlint runs-on to ubuntu-22.04 Signed-off-by: ChrisLiu --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e58e99a0..81437a48 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -50,7 +50,7 @@ jobs: skip-pkg-cache: true markdownlint-misspell-shellcheck: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 # this image is build from Dockerfile # https://github.com/pouchcontainer/pouchlinter/blob/master/Dockerfile container: pouchcontainer/pouchlinter:v0.1.2 @@ -58,9 +58,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Run misspell - run: find ./* -name "*" | grep -v vendor | xargs misspell -error - - name: Run shellcheck - run: find ./ -name "*.sh" | grep -v vendor | xargs shellcheck + run: find ./* -name "*" | xargs misspell -error + - name: Lint markdown files + run: find ./ -name "*.md" | grep -v enhancements | grep -v .github unit-tests: runs-on: ubuntu-20.04