Skip to content

Bump github.com/hashicorp/consul/api from 1.19.1 to 1.20.0 #1698

Bump github.com/hashicorp/consul/api from 1.19.1 to 1.20.0

Bump github.com/hashicorp/consul/api from 1.19.1 to 1.20.0 #1698

Workflow file for this run

name: Code Analysis
on:
pull_request:
branches:
- main
paths:
- "**/*.go"
- "go.mod"
- "go.sum"
- ".github/workflows/code.analysis.yml"
env:
GO_VERSION: 1.19
jobs:
analysis:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Revive Action
uses: morphy2k/revive-action@v2.5.1
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)
- name: misspell
uses: sobolevn/misspell-fixer-action@0.1.0