Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM ubuntu:resolute AS builder
ARG TARGETPLATFORM
ARG TARGETARCH
ARG TARGETOS
ARG RUNNER_VERSION="2.331.0"
ARG RUNNER_VERSION="2.332.0"
ARG CROSS_SPAWN_VERSION="7.0.6"
ARG TAR_VERSION="7.5.9"
ARG BRACE_EXPANSION_VERSION="5.0.4"
Expand Down Expand Up @@ -113,7 +113,7 @@ LABEL version="2.2.0"

# --- ARGUMENTS FOR RUNTIME ---
ARG TARGETARCH
ARG RUNNER_VERSION="2.331.0"
ARG RUNNER_VERSION="2.332.0"

Choose a reason for hiding this comment

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

medium

This RUNNER_VERSION argument is defined here and also in the builder stage on line 12. Several other arguments are also duplicated between stages. To improve maintainability and avoid having to update versions in multiple places, consider declaring these arguments with their default values once at the top of the Dockerfile (before the first FROM statement). Then, within each build stage, you can simply use ARG <name> to inherit the globally defined value.

ARG CROSS_SPAWN_VERSION="7.0.6"
ARG TAR_VERSION="7.5.9"
ARG BRACE_EXPANSION_VERSION="5.0.4"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.chrome
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ LABEL version="2.2.0"
ARG TARGETPLATFORM
ARG TARGETARCH
ARG TARGETOS
ARG RUNNER_VERSION="2.331.0"
ARG RUNNER_VERSION="2.332.0"
ARG CHROME_VERSION="146.0.7680.31"
ARG NODE_VERSION="24.14.0"
ARG NPM_VERSION="11.11.0"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.chrome-go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LABEL version="2.2.0"
ARG TARGETPLATFORM
ARG TARGETARCH
ARG TARGETOS
ARG RUNNER_VERSION="2.331.0"
ARG RUNNER_VERSION="2.332.0"
ARG CHROME_VERSION="146.0.7680.31"
ARG NODE_VERSION="24.14.0"
ARG NPM_VERSION="11.11.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/VERSION_OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ This document provides a comprehensive overview of all software versions, depend

### GitHub Actions Runner

- **Version**: `2.331.0`
- **Version**: `2.332.0`
- **Source**: GitHub official releases
- **Download URL**: `https://github.com/actions/runner/releases/download/v2.331.0/`
- **Download URL**: `https://github.com/actions/runner/releases/download/v2.332.0/`
- **Security Status**: ✅ Latest stable version

### Operating System
Expand Down