Skip to content

chore(deps): Bump codecov/codecov-action from 4.3.0 to 4.4.0 #251

chore(deps): Bump codecov/codecov-action from 4.3.0 to 4.4.0

chore(deps): Bump codecov/codecov-action from 4.3.0 to 4.4.0 #251

Workflow file for this run

# lint runs golangci-lint
name: lint
on:
pull_request:
push:
branches:
- main
- release/**
env:
GO_VERSION: '1.21'
jobs:
golangci-lint:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: golangci/golangci-lint-action@v6.0.1
with:
version: v1.54.0
args: --timeout 10m
github-token: ${{ secrets.github_token }}