Skip to content

chore(deps): bump sigs.k8s.io/controller-runtime from 0.19.0 to 0.19.1 #298

chore(deps): bump sigs.k8s.io/controller-runtime from 0.19.0 to 0.19.1

chore(deps): bump sigs.k8s.io/controller-runtime from 0.19.0 to 0.19.1 #298

Workflow file for this run

name: Go Linter
on:
push:
branches-ignore:
- main
- master
pull_request:
branches:
- main
- master
release:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'
- name: Lint
uses: golangci/golangci-lint-action@v3
# continue-on-error: true
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: v1.54.2
# Optional: working directory, useful for monorepos
# TODO: remove before release
working-directory: internal
# Optional: golangci-lint command line arguments.
args: --timeout=5m
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true
# Optional: if set to true then the all caching functionality will be complete disabled,
# takes precedence over all other caching options.
# skip-cache: true
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
# skip-pkg-cache: true
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
# skip-build-cache: true