Skip to content

build(deps): bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0 (… #1392

build(deps): bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0 (…

build(deps): bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0 (… #1392

name: Documentation Linters
on:
push:
branches:
- main
- "release/**"
pull_request:
paths:
- .github/workflows/documentation-linters.yml
- .github/**/*.md
- .markdownlint.yml
- contributing/**
- tools/go.mod
# - website/**
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec # 1.0.15
with:
use-quiet-mode: "yes"
use-verbose-mode: "yes"
config-file: ".markdownlinkcheck.json"
folder-path: "contributing,.github"
file-extension: ".md"
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0
with:
config: ".markdownlint.yml"
args: "contributing"
misspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: tools/go.mod
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: cd tools && go install github.com/client9/misspell/cmd/misspell
- run: misspell -error -source text -locale US contributing/ .github/