Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@ jobs:
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: 1.22.0
go-version: 1.23.1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.56.2
version: v1.63.4
args: "--disable-all --no-config -E gofmt"
- run: go vet ./pkg/...
- run: go vet ./sample/...
- run: go vet ./tools/...
Expand Down
9 changes: 1 addition & 8 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
run:
deadline: 5m
skip-dirs:
- "pkg/generated"
- "internal/sample-apiserver"
- "internal/example"
skip-files:
- "zz_generated.*"
run: {}

linters:
# please, do not use `enable-all`: it's deprecated and will be removed soon.
Expand Down
167 changes: 97 additions & 70 deletions go.mod

Large diffs are not rendered by default.

767 changes: 209 additions & 558 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion internal/sample-apiserver/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

Do not open pull requests directly against this repository, they will be ignored. Instead, please open pull requests against [kubernetes/kubernetes](https://git.k8s.io/kubernetes/). Please follow the same [contributing guide](https://git.k8s.io/kubernetes/CONTRIBUTING.md) you would follow for any other pull request made to kubernetes/kubernetes.

This repository is published from [kubernetes/kubernetes/staging/src/sigs.k8s.io/apiserver-runtime/internal/sample-apiserver](https://git.k8s.io/kubernetes/staging/src/sigs.k8s.io/apiserver-runtime/internal/sample-apiserver) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot).
This repository is published from [kubernetes/kubernetes/staging/src/k8s.io/sample-apiserver](https://git.k8s.io/kubernetes/staging/src/k8s.io/sample-apiserver) by the [kubernetes publishing-bot](https://git.k8s.io/publishing-bot).

Please see [Staging Directory and Publishing](https://git.k8s.io/community/contributors/devel/sig-architecture/staging.md) for more information
Loading
Loading