Skip to content

chore(deps): bump softprops/action-gh-release from 2.5.0 to 3.0.1 #3984

chore(deps): bump softprops/action-gh-release from 2.5.0 to 3.0.1

chore(deps): bump softprops/action-gh-release from 2.5.0 to 3.0.1 #3984

Workflow file for this run

name: lint
concurrency:
# Run only for most recent commit in PRs but for all tags and commits on main
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
on:
pull_request:
branches:
- '*'
push:
branches:
- 'main'
tags:
- '*'
workflow_dispatch: {}
permissions:
contents: read
jobs:
golangci-lint:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: setup golang
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
with:
skip-cache: true # actions/setup-go from v4 handles caching for us