Skip to content

Bump golang.org/x/net from 0.7.0 to 0.17.0 in /kafka-http-connector #243

Bump golang.org/x/net from 0.7.0 to 0.17.0 in /kafka-http-connector

Bump golang.org/x/net from 0.7.0 to 0.17.0 in /kafka-http-connector #243

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Check out code
uses: actions/checkout@v3
- name: Verify dependencies
run: |
LINT_VERSION=1.48.0
curl -fsSL https://github.com/golangci/golangci-lint/releases/download/v${LINT_VERSION}/golangci-lint-${LINT_VERSION}-linux-amd64.tar.gz | \
tar xz --strip-components 1 --wildcards \*/golangci-lint
sudo mv golangci-lint /usr/local/bin/
- name: Run checks
run: |
make lint