Skip to content

build(deps): bump codecov/codecov-action from 5.1.2 to 5.3.1 (#962) #1713

build(deps): bump codecov/codecov-action from 5.1.2 to 5.3.1 (#962)

build(deps): bump codecov/codecov-action from 5.1.2 to 5.3.1 (#962) #1713

Workflow file for this run

name: Lint
on:
push:
branches:
- master
- release/**
pull_request:
permissions:
contents: read
defaults:
run:
shell: bash
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
golangci-lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- uses: actions/checkout@v4
- name: Get auth token
id: token
uses: actions/create-github-app-token@136412a57a7081aa63c935a2cc2918f76c34f514 # v1.11.2
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
- name: golangci-lint
uses: golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae # [email protected]
with:
github-token: ${{ steps.token.outputs.token }}
version: v1.62
only-new-issues: true
args: --timeout=10m
timeout-minutes: 10