Skip to content

chore: bump github.com/go-co-op/gocron/v2 from 2.18.0 to 2.18.2 in the all-deps group #128

chore: bump github.com/go-co-op/gocron/v2 from 2.18.0 to 2.18.2 in the all-deps group

chore: bump github.com/go-co-op/gocron/v2 from 2.18.0 to 2.18.2 in the all-deps group #128

Workflow file for this run

---
name: linters
on:
push:
pull_request:
jobs:
go-mod:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: stable
- name: Check go mod
run: |
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
spell:
name: "Spell check"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
- uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
check_hidden: true
skip: "go.sum"
typos:
# https://github.com/crate-ci/typos
# Add exceptions to _typos.toml
# install and run locally: cargo install typos-cli && typos
name: typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v6
- name: Check spelling of entire workspace
uses: crate-ci/typos@v1
markdown:
name: markdown
runs-on: ubuntu-latest
steps:
- uses: DavidAnson/markdownlint-cli2-action@v21
with:
globs: '**/*.md'