Skip to content

chore(deps): bump golang.org/x/mod from 0.37.0 to 0.38.0 in /e2e #25140

chore(deps): bump golang.org/x/mod from 0.37.0 to 0.38.0 in /e2e

chore(deps): bump golang.org/x/mod from 0.37.0 to 0.38.0 in /e2e #25140

Workflow file for this run

name: golangci-lint
on:
push:
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
golangci:
name: lint
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
matrix:
working-directory: ['.', 'modules/light-clients/08-wasm', 'e2e']
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-go@v6
with:
go-version-file: '${{ matrix.working-directory }}/go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v9.3.0
with:
version: v2.11.3
only-new-issues: true
args: --timeout 10m
working-directory: ${{ matrix.working-directory }}