Skip to content

Commit e1ac594

Browse files
committed
update ci markdownlint runs-on to ubuntu-22.04
Signed-off-by: ChrisLiu <chrisliu1995@163.com>
1 parent dffdc78 commit e1ac594

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
env:
1212
# Common versions
1313
GO_VERSION: '1.21'
14-
GOLANGCI_VERSION: 'v1.58'
14+
GOLANGCI_VERSION: 'v1.55.2'
1515
DOCKER_BUILDX_VERSION: 'v0.4.2'
1616

1717
# Common users. We can't run a step 'if secrets.AWS_USR != ""' but we can run
@@ -50,17 +50,17 @@ jobs:
5050
skip-pkg-cache: true
5151

5252
markdownlint-misspell-shellcheck:
53-
runs-on: ubuntu-20.04
53+
runs-on: ubuntu-22.04
5454
# this image is build from Dockerfile
5555
# https://github.com/pouchcontainer/pouchlinter/blob/master/Dockerfile
5656
container: pouchcontainer/pouchlinter:v0.1.2
5757
steps:
5858
- name: Checkout
5959
uses: actions/checkout@v3
6060
- name: Run misspell
61-
run: find ./* -name "*" | grep -v vendor | xargs misspell -error
62-
- name: Run shellcheck
63-
run: find ./ -name "*.sh" | grep -v vendor | xargs shellcheck
61+
run: find ./* -name "*" | xargs misspell -error
62+
- name: Lint markdown files
63+
run: find ./ -name "*.md" | grep -v enhancements | grep -v .github
6464

6565
unit-tests:
6666
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)