Skip to content

build(deps): bump github.com/ethereum/go-ethereum from 1.13.5 to 1.13.15 #44

build(deps): bump github.com/ethereum/go-ethereum from 1.13.5 to 1.13.15

build(deps): bump github.com/ethereum/go-ethereum from 1.13.5 to 1.13.15 #44

Workflow file for this run

name: reviewdog
on: [pull_request]
jobs:
staticcheck:
name: runner / staticcheck
runs-on: ubuntu-latest
steps:
# checkout code
- uses: actions/checkout@v4
# If you want to use the specific version of Go,
# you need actions/setup-go@v4 action.
- uses: actions/setup-go@v4
with:
go-version: "1.21"
# run staticcheck
- uses: reviewdog/action-staticcheck@v1
with:
github_token: ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
reporter: github-pr-review
# Report all results.
filter_mode: diff_context
# Exit with 1 when it find at least one finding.
fail_on_error: true