Skip to content

Chore(deps): Bump golang.org/x/net from 0.27.0 to 0.29.0 #1312

Chore(deps): Bump golang.org/x/net from 0.27.0 to 0.29.0

Chore(deps): Bump golang.org/x/net from 0.27.0 to 0.29.0 #1312

Workflow file for this run

name: Linters
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Spellcheck
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: rojopolis/[email protected]
name: Spellcheck
with:
config_path: .github/configs/spellcheck.yml
commitlint:
name: Commitlint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
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 }}/.github/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@v3
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: "yes"
config-file: ".github/configs/linkcheck.json"