Skip to content

chore(deps): Bump google.golang.org/grpc from 1.53.0 to 1.56.3 in /vmware-event-router #300

chore(deps): Bump google.golang.org/grpc from 1.53.0 to 1.56.3 in /vmware-event-router

chore(deps): Bump google.golang.org/grpc from 1.53.0 to 1.56.3 in /vmware-event-router #300

Workflow file for this run

name: VMware Event Router Linting
# triggered on every push and PRs but only when changes inside
# vmware-event-router (sub)dir(s)
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "vmware-event-router/**"
push:
paths:
- "vmware-event-router/**"
jobs:
golangci:
name: lint
strategy:
matrix:
go-version: ["1.19"]
platform: ["ubuntu-latest"]
runs-on: ${{ matrix.platform }}
timeout-minutes: 20
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: ${{ matrix.go-version }}
cache: false # use golangci-lint caching
id: go
- name: golangci-lint
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: latest
# Optional: working directory, useful for monorepos
working-directory: vmware-event-router
# Optional: golangci-lint command line arguments.
args: --build-tags unit,integration -v --timeout 3m
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true