Skip to content

Bump google.golang.org/grpc from 1.81.1 to 1.82.1 in /tools #197

Bump google.golang.org/grpc from 1.81.1 to 1.82.1 in /tools

Bump google.golang.org/grpc from 1.81.1 to 1.82.1 in /tools #197

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Run on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v7
with:
# ci-verify runs release-snapshot, which needs tags: goreleaser
# derives the snapshot version and hack/gen-capi-metadata.sh derives
# the release series from them.
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v7
with:
go-version-file: go.mod
cache-dependency-path: |
go.sum
tools/go.sum
- name: Cache local tool binaries
uses: actions/cache@v6
with:
path: bin
key: tools-test-${{ runner.os }}-${{ hashFiles('Makefile', '.custom-gcl.yml', 'tools/go.sum') }}
restore-keys: |
tools-test-${{ runner.os }}-
- name: Running Tests
run: |
make ci-verify