Skip to content

Bump google.golang.org/grpc from 1.79.3 to 1.82.1 #1155

Bump google.golang.org/grpc from 1.79.3 to 1.82.1

Bump google.golang.org/grpc from 1.79.3 to 1.82.1 #1155

Workflow file for this run

name: Pre Submit # workflow name
on: # on events
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
jobs:
build:
name: build
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Verify imports are sorted
run: make test-imports
- name: Verify there are no packages to vendor
run: make verify-vendor
- name: Verify bundle and manifests are updated
run: make verify-bundle
- name: Run checks and unit tests
run: make test
- name: Test container build
run: make container-build-community