build(deps): Bump github.com/cosmos/iavl from 0.19.1 to 1.3.3 #908
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 | |
# Lint runs golangci-lint over the entire cosmos-sdk repository | |
# This workflow is run on every pull request and push to main | |
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed. | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
permissions: | |
pull-requests: read # for technote-space/get-diff-action to get git reference | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- uses: actions/checkout@v3 | |
- uses: technote-space/[email protected] | |
id: git_diff | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- name: Get data from Go build cache | |
# if: env.GIT_DIFF | |
if: ${{ false }} | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/golangci-lint | |
~/.cache/go-build | |
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
- name: Run golangci-lint | |
if: env.GIT_DIFF | |
run: make lint |