deps: update module k8s.io/kubernetes to v1.31.2 - autoclosed #9064
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: golangci-lint | |
on: | |
push: | |
branches: | |
- 'main' | |
- '[0-9]+.[1-9][0-9]*.x' | |
pull_request: | |
branches: | |
- 'main' | |
- '[0-9]+.[1-9][0-9]*.x' | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
- "**/go.sum" | |
- ".golangci.yml" | |
- ".github/workflows/golangci-lint.yml" | |
- "!docs/**" | |
# Declare default permissions as read only. | |
permissions: read-all | |
env: | |
# renovate: datasource=github-releases depName=golangci/golangci-lint | |
GOLANGCI_LINT_VERSION: "v1.59.1" | |
GO_VERSION: "~1.22" | |
jobs: | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- name: "lifecycle-operator" | |
folder: "lifecycle-operator/" | |
- name: "metrics-operator" | |
folder: "metrics-operator/" | |
- name: "scheduler" | |
folder: "scheduler/" | |
- name: "certificate-operator" | |
folder: "keptn-cert-manager/" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6 | |
with: | |
working-directory: ${{ matrix.config.folder }} | |
version: ${{ env.GOLANGCI_LINT_VERSION }} | |
args: --config ../.golangci.yml -v |