Skip to content

fix(deps): update module github.com/kyverno/chainsaw to v0.2.11 (#16) #61

fix(deps): update module github.com/kyverno/chainsaw to v0.2.11 (#16)

fix(deps): update module github.com/kyverno/chainsaw to v0.2.11 (#16) #61

Workflow file for this run

name: linters
on:
pull_request:
branches: [ '*' ]
push:
branches:
- "main"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache: false
- run: |
make lint
hadolint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
make hadolint
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v6
with:
configFile: .commitlintrc.mjs
token: ${{ secrets.GITHUB_TOKEN }}