Skip to content

fix(deps): update module golang.org/x/oauth2 to v0.23.0 (#94) #196

fix(deps): update module golang.org/x/oauth2 to v0.23.0 (#94)

fix(deps): update module golang.org/x/oauth2 to v0.23.0 (#94) #196

Workflow file for this run

name: go
on:
pull_request:
paths:
- .github/workflows/go.yaml
- go.*
- '**/*.go'
push:
branches:
- main
paths:
- .github/workflows/go.yaml
- go.*
- '**/*.go'
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.0
- uses: golangci/golangci-lint-action@v6
with:
version: v1.60.3
tidy:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-go@v5
with:
go-version: 1.23.0
- run: go mod tidy
- uses: int128/update-generated-files-action@v2
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.0
- run: go test -v ./...