[release-1.10] ✨ Bump Kubernetes in tests to v1.33.0 and claim support for v1.33 #8312
Workflow file for this run
This file contains hidden or 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: PR golangci-lint | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
# Remove all permissions from GITHUB_TOKEN except metadata. | |
permissions: {} | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
working-directory: | |
- "" | |
- test | |
- hack/tools | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2 | |
- name: Calculate go version | |
id: vars | |
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT | |
- name: Set up Go | |
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # tag=v5.3.0 | |
with: | |
go-version: ${{ steps.vars.outputs.go_version }} | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@4696ba8babb6127d732c3c6dde519db15edab9ea # tag=v6.5.1 | |
with: | |
version: v1.63.4 | |
args: --out-format=colored-line-number | |
working-directory: ${{matrix.working-directory}} | |
- name: Lint API | |
run: GOLANGCI_LINT_EXTRA_ARGS=--out-format=colored-line-number make lint-api |