diff --git a/.github/workflows/generate_grpc_cache.yaml b/.github/workflows/generate_grpc_cache.yaml index fa5ccf20e73a..034efdb6e6f4 100644 --- a/.github/workflows/generate_grpc_cache.yaml +++ b/.github/workflows/generate_grpc_cache.yaml @@ -84,7 +84,7 @@ jobs: build-args: | GRPC_BASE_IMAGE=${{ matrix.grpc-base-image }} GRPC_MAKEFLAGS=--jobs=4 --output-sync=target - GRPC_VERSION=v1.64.0 + GRPC_VERSION=v1.65.0 context: . file: ./Dockerfile cache-to: type=gha,ignore-error=true diff --git a/.github/workflows/image_build.yml b/.github/workflows/image_build.yml index c891d3dd6ad7..c358ce244f13 100644 --- a/.github/workflows/image_build.yml +++ b/.github/workflows/image_build.yml @@ -232,7 +232,7 @@ jobs: BASE_IMAGE=${{ inputs.base-image }} GRPC_BASE_IMAGE=${{ inputs.grpc-base-image || inputs.base-image }} GRPC_MAKEFLAGS=--jobs=4 --output-sync=target - GRPC_VERSION=v1.64.0 + GRPC_VERSION=v1.65.0 MAKEFLAGS=${{ inputs.makeflags }} context: . file: ./Dockerfile @@ -260,7 +260,7 @@ jobs: BASE_IMAGE=${{ inputs.base-image }} GRPC_BASE_IMAGE=${{ inputs.grpc-base-image || inputs.base-image }} GRPC_MAKEFLAGS=--jobs=4 --output-sync=target - GRPC_VERSION=v1.64.0 + GRPC_VERSION=v1.65.0 MAKEFLAGS=${{ inputs.makeflags }} context: . file: ./Dockerfile diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3aa8736a4944..4328708d6ee8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -5,7 +5,7 @@ on: - pull_request env: - GRPC_VERSION: v1.64.0 + GRPC_VERSION: v1.65.0 permissions: contents: write diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a7023933cc01..5de68554e252 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ on: - '*' env: - GRPC_VERSION: v1.64.0 + GRPC_VERSION: v1.65.0 concurrency: group: ci-tests-${{ github.head_ref || github.ref }}-${{ github.repository }} diff --git a/Dockerfile b/Dockerfile index 907ad54b442d..699014b24c68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -206,7 +206,7 @@ FROM ${GRPC_BASE_IMAGE} AS grpc # This is a bit of a hack, but it's required in order to be able to effectively cache this layer in CI ARG GRPC_MAKEFLAGS="-j4 -Otarget" -ARG GRPC_VERSION=v1.64.2 +ARG GRPC_VERSION=v1.65.0 ENV MAKEFLAGS=${GRPC_MAKEFLAGS}