deps: update github.com/keptn/lifecycle-toolkit/keptn-cert-manager digest to 9d026b8 #9438
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.61.0" | |
GO_VERSION: "~1.23" | |
jobs: | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- name: "lifecycle-operator" | |
folder: "lifecycle-operator/" | |
- name: "metrics-operator" | |
folder: "metrics-operator/" | |
- name: "certificate-operator" | |
folder: "keptn-cert-manager/" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6 | |
with: | |
working-directory: ${{ matrix.config.folder }} | |
version: ${{ env.GOLANGCI_LINT_VERSION }} | |
args: --config ../.golangci.yml -v |