Skip to content

chore(deps): bump github.com/confluentinc/confluent-kafka-go/v2 from 2.6.0 to 2.6.1 #15

chore(deps): bump github.com/confluentinc/confluent-kafka-go/v2 from 2.6.0 to 2.6.1

chore(deps): bump github.com/confluentinc/confluent-kafka-go/v2 from 2.6.0 to 2.6.1 #15

Workflow file for this run

name: build-verify
on:
push:
branches: [ "main" ]
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
permissions: read-all
env:
GOLANGCI_LINT_VERSION: v1.62.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed #v5.1.0
with:
go-version-file: ./go.mod
cache-dependency-path: ./go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: "${{ env.GOLANGCI_LINT_VERSION }}"
- name: Build
run: make build
- name: Test
run: make test