Skip to content

Commit

Permalink
update ci markdownlint runs-on to ubuntu-22.04
Browse files Browse the repository at this point in the history
Signed-off-by: ChrisLiu <[email protected]>
  • Loading branch information
chrisliu1995 committed Jul 4, 2024
1 parent dffdc78 commit e9cd91b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ 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
steps:
- 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
Expand Down

0 comments on commit e9cd91b

Please sign in to comment.