Skip to content

Bump golang.org/x/crypto from 0.31.0 to 0.32.0 #1554

Bump golang.org/x/crypto from 0.31.0 to 0.32.0

Bump golang.org/x/crypto from 0.31.0 to 0.32.0 #1554

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO111MODULE: on
jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: avto-dev/markdown-lint@v1
with:
config: '.markdownlint.yml'
args: 'docs'
misspell:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- version: "1.22"
name: "target"
- version: "1.23"
name: "latest"
name: "Spell check with ${{ matrix.go.name }} Go"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go.version }}
- run: |
make docs-lint