build(deps): bump github.com/cometbft/cometbft from 0.38.12 to 0.38.15 #692
Workflow file for this run
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: Lint | |
# 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: | |
- main | |
env: | |
GOPRIVATE: github.com/milkyway-labs | |
GH_ACCESS_TOKEN: ${{ secrets.GOPRIVATE_ACCESS_TOKEN }} | |
# Cancel all previous runs of the same workflow when a new one is triggered in the same branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ !contains(github.ref, 'tags/')}} | |
jobs: | |
GolangCI: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Setup Go 🧰 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Setup GOPRIVATE 🛡️ | |
run: git config --global url.https://[email protected]/.insteadOf https://github.com/ | |
- name: Compute diff 📜 | |
uses: technote-space/[email protected] | |
id: git_diff | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- name: Run lint ✅ | |
run: make lint |