Skip to content

🌱 Bump github.com/spf13/pflag from 1.0.5 to 1.0.6 #1430

🌱 Bump github.com/spf13/pflag from 1.0.5 to 1.0.6

🌱 Bump github.com/spf13/pflag from 1.0.5 to 1.0.6 #1430

Workflow file for this run

name: golangci-lint
on:
pull_request:
types: [ opened, edited, synchronize, reopened ]
permissions: {}
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
working-directory:
- ""
- api
- hack/tools/release
include:
- working-directory: hack/tools/release
additional-args: --build-tags=tools --modules-download-mode=readonly
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 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 # v5.3.0
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: golangci-lint-${{matrix.working-directory}}
uses: golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae # v6.2.0
with:
version: v1.60.3
working-directory: ${{matrix.working-directory}}
args: --timeout=15m ${{matrix.additional-args}}