Skip to content

chore(deps): bump anchore/sbom-action from 0.17.8 to 0.17.9 in the ac… #12

chore(deps): bump anchore/sbom-action from 0.17.8 to 0.17.9 in the ac…

chore(deps): bump anchore/sbom-action from 0.17.8 to 0.17.9 in the ac… #12

Workflow file for this run

name: Docs Linter
on:
push:
branches:
- master
pull_request:
paths:
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install dependencies
run: go mod download
- name: Build docs
run: make -C docs/ build
- name: Check diff
run: git diff --exit-code || (echo "Some docs files are not formatted, please run 'make build'." && exit 1)
- name: Run linter
run: make -C docs/ lint