Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #2992
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linters | |
on: | |
push: | |
branches: [ main, legacy-firecracker-v0.24.0-with-upf-support ] | |
pull_request: | |
branches: [ main, legacy-firecracker-v0.24.0-with-upf-support ] | |
jobs: | |
build: | |
name: Spellcheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rojopolis/[email protected] | |
name: Spellcheck | |
with: | |
config_path: configs/.spellcheck.yml | |
commitlint: | |
name: Commitlint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install Commitlint | |
run: sudo npm install -g @commitlint/cli | |
- name: Lint commits | |
run: commitlint | |
--config ${{ github.workspace }}/configs/commitlint.config.js | |
--help-url 'https://stackoverflow.com/a/45974435' | |
--from HEAD~1 --to HEAD | |
--verbose | |
markdown-link-check: | |
name: LinkCheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
config-file: 'configs/.linkcheck.json' |