Skip to content

Bump golang.org/x/mod from 0.21.0 to 0.22.0 #1601

Bump golang.org/x/mod from 0.21.0 to 0.22.0

Bump golang.org/x/mod from 0.21.0 to 0.22.0 #1601

Workflow file for this run

name: ci
on:
push:
workflow_dispatch: {} # support manual runs
permissions:
contents: read
concurrency: ci-${{ github.ref }}
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
check-latest: true
cache: true
- name: Test
run: make test
- name: Lint
run: make checkgenerate && make lint