deps(go): bump github.com/ethereum/go-ethereum from 1.13.15 to 1.14.2 #1726
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
# NOTE: This name appears in GitHub's Checks API and in workflow's status badge. | |
name: ci-lint | |
# Trigger the workflow when: | |
on: | |
# A push occurs to one of the matched branches. | |
push: | |
branches: | |
- main | |
- stable/* | |
# Or when a pull request event occurs for a pull request against one of the | |
# matched branches. | |
pull_request: | |
branches: | |
- main | |
- stable/* | |
# Cancel in-progress jobs on same branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-go: | |
name: lint-go | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# Fetch all history so gitlint can check the relevant commits. | |
fetch-depth: '0' | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22.x" | |
- name: Install gitlint | |
run: | | |
python -m pip install gitlint | |
- name: Lint git commits | |
run: | | |
make lint-git | |
# Always run this step so that all linting errors can be seen at once. | |
# Skip this step for dependabot pull requests. | |
if: always() && github.actor != 'dependabot[bot]' | |
- name: Lint Go | |
uses: golangci/golangci-lint-action@v5 | |
with: | |
version: v1.56.1 | |
# Always run this step so that all linting errors can be seen at once. | |
if: always() |