chore(deps): update registry.access.redhat.com/ubi9/ubi-micro docker digest to 113775a (release-1.1) #798
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: linter | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main", "release*" ] | |
tags: [ "*" ] | |
pull_request: | |
branches: [ "main", "release*" ] | |
jobs: | |
golangci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.59 | |
args: --verbose --timeout=15m |