Skip to content

ci: update fedora latest to 44#16249

Open
scotthart wants to merge 3 commits into
googleapis:mainfrom
scotthart:ci_fedora_44_2
Open

ci: update fedora latest to 44#16249
scotthart wants to merge 3 commits into
googleapis:mainfrom
scotthart:ci_fedora_44_2

Conversation

@scotthart

Copy link
Copy Markdown
Member

No description provided.

@scotthart scotthart requested a review from a team as a code owner July 10, 2026 20:24

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the Fedora base image version from 40 to 44 in the Bazel and CMake Dockerfiles. However, Fedora 44 is not a released version, which will cause the Docker builds to fail. The reviewer recommends using the latest stable version (Fedora 41) and defining the version string with an ARG to improve maintainability across files.

# limitations under the License.

FROM fedora:40
FROM fedora:44

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Fedora 44 is not a released version (the current latest stable version is Fedora 41). Using a non-existent version will cause the Docker build to fail. Additionally, use an ARG to define version strings that are duplicated across multiple files to improve maintainability.

ARG FEDORA_VERSION=41
FROM fedora:${FEDORA_VERSION}
References
  1. In Dockerfiles, use ARG to define version strings that are duplicated across multiple files to improve maintainability.

# limitations under the License.

FROM fedora:40
FROM fedora:44

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Fedora 44 is not a released version (the current latest stable version is Fedora 41). Using a non-existent version will cause the Docker build to fail. Additionally, use an ARG to define version strings that are duplicated across multiple files to improve maintainability.

ARG FEDORA_VERSION=41
FROM fedora:${FEDORA_VERSION}
References
  1. In Dockerfiles, use ARG to define version strings that are duplicated across multiple files to improve maintainability.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants