Skip to content

build(deps): bump github.com/hashicorp/consul/api from 1.26.1 to 1.30.0 in /contrib/registry/consul #6369

build(deps): bump github.com/hashicorp/consul/api from 1.26.1 to 1.30.0 in /contrib/registry/consul

build(deps): bump github.com/hashicorp/consul/api from 1.26.1 to 1.30.0 in /contrib/registry/consul #6369

Workflow file for this run

name: Lint
on:
push:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
resolve-modules:
name: resolve module
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- id: set-matrix
run: ./hack/resolve-modules.sh
lint:
name: lint module
runs-on: ubuntu-latest
needs: resolve-modules
strategy:
matrix: ${{ fromJson(needs.resolve-modules.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61.0
working-directory: ${{ matrix.workdir }}