Skip to content

Bump golang.org/x/net from 0.20.0 to 0.23.0 #240

Bump golang.org/x/net from 0.20.0 to 0.23.0

Bump golang.org/x/net from 0.20.0 to 0.23.0 #240

Workflow file for this run

---
name: Spell check
on:
push:
tags-ignore:
- '**'
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
misspell:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Check out code
uses: actions/checkout@v3
- name: Install Tool
run: go install github.com/client9/misspell/cmd/misspell@latest
- run: find . -type f | grep -v go.sum | xargs misspell -source=text -error