Skip to content

Bump golangci/golangci-lint-action from 3.7.0 to 4.0.0 #260

Bump golangci/golangci-lint-action from 3.7.0 to 4.0.0

Bump golangci/golangci-lint-action from 3.7.0 to 4.0.0 #260

Workflow file for this run

name: Lint
# Lint runs golangci-lint over the entire nJuno repository.
# This workflow is run on every pull request and push to master.
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
on:
pull_request:
push:
branches:
- master
jobs:
GolangCI:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- uses: technote-space/[email protected]
with:
SUFFIX_FILTER: |
.go
.mod
.sum
- uses: golangci/[email protected]
with:
version: v1.51.1
args: --timeout 10m
github-token: ${{ secrets.GITHUB_TOKEN }}
if: "env.GIT_DIFF != ''"