go mod tidy (#21323)
* Update auto-generated docs and translations * fix typo * github action doesnt support anchor yamls --------- Co-authored-by: Medya Ghazizadeh <medya@google.com>pull/21312/head
parent
059ceb838f
commit
01ecbc7f48
|
@ -1,18 +1,24 @@
|
|||
# Functional Test is a subset of minikube integration test, testing the most essential features of minikube.
|
||||
name: Functional Test
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
paths: &paths_common
|
||||
paths:
|
||||
- "go.mod"
|
||||
- "**.go"
|
||||
- "Makefile"
|
||||
- "!site/**"
|
||||
- "!**.md"
|
||||
- "!**.json"
|
||||
- "!**.json"
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths: *paths_common
|
||||
|
||||
paths:
|
||||
- "go.mod"
|
||||
- "**.go"
|
||||
- "Makefile"
|
||||
- "!site/**"
|
||||
- "!**.md"
|
||||
- "!**.json"
|
||||
# Limit one functional test job running per PR/Branch
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
|
@ -46,5 +46,5 @@ jobs:
|
|||
This PR is auto-generated by the [gendocs](https://github.com/kubernetes/minikube/blob/master/.github/workflows/go-mod-tidy.yml) CI workflow that runs on every push to master.
|
||||
|
||||
```
|
||||
${{ steps.gomodtidy.outputs.changes }}
|
||||
${{ steps.gmodtidy.outputs.changes }}
|
||||
```
|
||||
|
|
|
@ -3,7 +3,7 @@ name: Smoke Test
|
|||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths: &paths_common
|
||||
paths:
|
||||
- "go.mod"
|
||||
- "**.go"
|
||||
- "Makefile"
|
||||
|
@ -12,7 +12,14 @@ on:
|
|||
- "!**.md"
|
||||
- "!**.json"
|
||||
pull_request:
|
||||
paths: *paths_common
|
||||
paths:
|
||||
- "go.mod"
|
||||
- "**.go"
|
||||
- "Makefile"
|
||||
- "!hack/**"
|
||||
- "!site/**"
|
||||
- "!**.md"
|
||||
- "!**.json"
|
||||
workflow_dispatch:
|
||||
env:
|
||||
GOPROXY: https://proxy.golang.org
|
||||
|
|
|
@ -3,17 +3,23 @@ on:
|
|||
workflow_dispatch:
|
||||
push:
|
||||
branches: [ master ]
|
||||
paths: &paths_common
|
||||
paths:
|
||||
- go.mod
|
||||
- '**/*.go'
|
||||
- Makefile
|
||||
# Exclusions
|
||||
- '!hack/**'
|
||||
- '!site/**'
|
||||
- '!**/*.md'
|
||||
- '!**/*.json'
|
||||
pull_request:
|
||||
paths: *paths_common
|
||||
paths:
|
||||
- go.mod
|
||||
- '**/*.go'
|
||||
- Makefile
|
||||
- '!hack/**'
|
||||
- '!site/**'
|
||||
- '!**/*.md'
|
||||
- '!**/*.json'
|
||||
# Limit one unit test job running per PR/Branch
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
|
@ -13,7 +13,7 @@ require (
|
|||
github.com/cenkalti/backoff/v4 v4.3.0
|
||||
github.com/google/go-github/v74 v74.0.0
|
||||
github.com/jmoiron/sqlx v1.4.0
|
||||
github.com/olekukonko/tablewriter v1.0.8
|
||||
github.com/olekukonko/tablewriter v1.0.9
|
||||
github.com/pkg/errors v0.9.1
|
||||
github.com/spf13/cobra v1.9.1
|
||||
github.com/spf13/viper v1.20.1
|
||||
|
@ -146,8 +146,8 @@ require (
|
|||
github.com/muesli/reflow v0.3.0 // indirect
|
||||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
||||
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
|
||||
github.com/olekukonko/errors v0.0.0-20250405072817-4e6d85265da6 // indirect
|
||||
github.com/olekukonko/ll v0.0.8 // indirect
|
||||
github.com/olekukonko/errors v1.1.0 // indirect
|
||||
github.com/olekukonko/ll v0.0.9 // indirect
|
||||
github.com/opencontainers/cgroups v0.0.1 // indirect
|
||||
github.com/opencontainers/go-digest v1.0.0 // indirect
|
||||
github.com/opencontainers/image-spec v1.1.0 // indirect
|
||||
|
|
12
hack/go.sum
12
hack/go.sum
|
@ -1133,12 +1133,12 @@ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq
|
|||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
|
||||
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=
|
||||
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw=
|
||||
github.com/olekukonko/errors v0.0.0-20250405072817-4e6d85265da6 h1:r3FaAI0NZK3hSmtTDrBVREhKULp8oUeqLT5Eyl2mSPo=
|
||||
github.com/olekukonko/errors v0.0.0-20250405072817-4e6d85265da6/go.mod h1:ppzxA5jBKcO1vIpCXQ9ZqgDh8iwODz6OXIGKU8r5m4Y=
|
||||
github.com/olekukonko/ll v0.0.8 h1:sbGZ1Fx4QxJXEqL/6IG8GEFnYojUSQ45dJVwN2FH2fc=
|
||||
github.com/olekukonko/ll v0.0.8/go.mod h1:En+sEW0JNETl26+K8eZ6/W4UQ7CYSrrgg/EdIYT2H8g=
|
||||
github.com/olekukonko/tablewriter v1.0.8 h1:f6wJzHg4QUtJdvrVPKco4QTrAylgaU0+b9br/lJxEiQ=
|
||||
github.com/olekukonko/tablewriter v1.0.8/go.mod h1:H428M+HzoUXC6JU2Abj9IT9ooRmdq9CxuDmKMtrOCMs=
|
||||
github.com/olekukonko/errors v1.1.0 h1:RNuGIh15QdDenh+hNvKrJkmxxjV4hcS50Db478Ou5sM=
|
||||
github.com/olekukonko/errors v1.1.0/go.mod h1:ppzxA5jBKcO1vIpCXQ9ZqgDh8iwODz6OXIGKU8r5m4Y=
|
||||
github.com/olekukonko/ll v0.0.9 h1:Y+1YqDfVkqMWuEQMclsF9HUR5+a82+dxJuL1HHSRpxI=
|
||||
github.com/olekukonko/ll v0.0.9/go.mod h1:En+sEW0JNETl26+K8eZ6/W4UQ7CYSrrgg/EdIYT2H8g=
|
||||
github.com/olekukonko/tablewriter v1.0.9 h1:XGwRsYLC2bY7bNd93Dk51bcPZksWZmLYuaTHR0FqfL8=
|
||||
github.com/olekukonko/tablewriter v1.0.9/go.mod h1:5c+EBPeSqvXnLLgkm9isDdzR3wjfBkHR9Nhfp3NWrzo=
|
||||
github.com/onsi/ginkgo/v2 v2.21.0 h1:7rg/4f3rB88pb5obDgNZrNHrQ4e6WpjonchcpuBRnZM=
|
||||
github.com/onsi/ginkgo/v2 v2.21.0/go.mod h1:7Du3c42kxCUegi0IImZ1wUQzMBVecgIHjR1C+NkhLQo=
|
||||
github.com/onsi/gomega v1.35.1 h1:Cwbd75ZBPxFSuZ6T+rN/WCb/gOc6YgFBXLlZLhC7Ds4=
|
||||
|
|
Loading…
Reference in New Issue