Skip to content
Open
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 .github/workflows/cloud-smoke-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: "1.26.x"
go-version: "1.27.x"
cache: false

- name: Build trusted cloud CI runner
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: "1.26.x"
go-version: "1.27.x"
cache: false

- name: Build trusted cloud CI runner
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cloud-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: "1.26.x"
go-version: "1.27.x"
cache: false

- name: Run repository lint
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: "1.26.x"
go-version: "1.27.x"
cache: false

- name: Build provider cloud CI runner
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: "1.26.x"
go-version: "1.27.x"
cache: false

- name: Build provider cloud CI runner
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
- name: Install Go for cloud CI runner
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: "1.26.x"
go-version: "1.27.x"
cache: false

- name: Build cloud CI runner
Expand Down
39 changes: 23 additions & 16 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ansible/roles/cloud_compose/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cloud_compose_home: /home/cloud-compose
cloud_compose_data_dir: /mnt/disks/data
cloud_compose_volumes_dir: /mnt/disks/volumes

cloud_compose_docker_compose_version: v5.3.1
cloud_compose_docker_compose_version: v5.5.0
cloud_compose_docker_buildx_version: v0.35.0
cloud_compose_sitectl_version: latest
cloud_compose_sitectl_package_versions: {}
Expand Down
2 changes: 1 addition & 1 deletion ci/config-management-cloud-smoke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

repo_root="$(cd "$(dirname "$0")/.." && pwd)"
# renovate: datasource=docker depName=python packageName=python versioning=docker
CONFIG_MANAGEMENT_IMAGE_DEFAULT="python:3.11-slim@sha256:e031123e3d85762b141ad1cbc56452ba69c6e722ebf2f042cc0dc86c47c0d8b3"
CONFIG_MANAGEMENT_IMAGE_DEFAULT="python:3.14-slim@sha256:83ff1d245a3d57d04152252d3ef9cb361494d0b3395abd65a5ebe91c401c8e83"

usage() {
cat <<EOF
Expand Down
2 changes: 1 addition & 1 deletion ci/config-management-smoke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

repo_root="$(cd "$(dirname "$0")/.." && pwd)"
# renovate: datasource=docker depName=python packageName=python versioning=docker
CONFIG_MANAGEMENT_IMAGE_DEFAULT="python:3.11-slim@sha256:e031123e3d85762b141ad1cbc56452ba69c6e722ebf2f042cc0dc86c47c0d8b3"
CONFIG_MANAGEMENT_IMAGE_DEFAULT="python:3.14-slim@sha256:83ff1d245a3d57d04152252d3ef9cb361494d0b3395abd65a5ebe91c401c8e83"
image="${CLOUD_COMPOSE_CONFIG_MANAGEMENT_IMAGE:-$CONFIG_MANAGEMENT_IMAGE_DEFAULT}"
container_entrypoint="$repo_root/ci/config-management-smoke-container.sh"

Expand Down
4 changes: 2 additions & 2 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM python:3.14-alpine3.22@sha256:6b91e66ab2a880ce9ca5a1b91c70f45963ff71ff68268
WORKDIR /work

RUN apk add --no-cache git && \
pip install uv==0.11.29 && \
uv pip install --break-system-packages --system zensical==0.0.50
pip install uv==0.12.6 && \
uv pip install --break-system-packages --system zensical==0.0.57

EXPOSE 8080

Expand Down
4 changes: 2 additions & 2 deletions modules/digitalocean/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ variable "runtime" {

docker = optional(object({
# renovate: datasource=github-releases depName=docker-compose packageName=docker/compose versioning=semver
compose_version = optional(string, "v5.3.1")
compose_version = optional(string, "v5.5.0")
# renovate: datasource=github-releases depName=docker-buildx packageName=docker/buildx versioning=semver
buildx_version = optional(string, "v0.35.0")
buildx_version = optional(string, "v0.36.1")
}), {})

managed_runtime = optional(object({
Expand Down
39 changes: 23 additions & 16 deletions modules/gcp/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -343,14 +343,14 @@ variable "sitectl_package_versions" {
variable "docker_compose_version" {
type = string
# renovate: datasource=github-releases depName=docker-compose packageName=docker/compose versioning=semver
default = "v5.3.1"
default = "v5.5.0"
description = "Docker Compose release tag installed as the docker compose CLI plugin on hosts that need a manually managed plugin."
}

variable "docker_buildx_version" {
type = string
# renovate: datasource=github-releases depName=docker-buildx packageName=docker/buildx versioning=semver
default = "v0.35.0"
default = "v0.36.1"
description = "Docker Buildx release tag installed as the docker buildx CLI plugin on hosts that need a manually managed plugin."
}

Expand Down
45 changes: 27 additions & 18 deletions modules/linode/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions modules/linode/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ variable "runtime" {

docker = optional(object({
# renovate: datasource=github-releases depName=docker-compose packageName=docker/compose versioning=semver
compose_version = optional(string, "v5.3.1")
compose_version = optional(string, "v5.5.0")
# renovate: datasource=github-releases depName=docker-buildx packageName=docker/buildx versioning=semver
buildx_version = optional(string, "v0.35.0")
buildx_version = optional(string, "v0.36.1")
}), {})

managed_runtime = optional(object({
Expand Down
4 changes: 2 additions & 2 deletions modules/linux-vm-runtime/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -336,14 +336,14 @@ variable "sitectl_verify_args" {
variable "docker_compose_version" {
type = string
# renovate: datasource=github-releases depName=docker-compose packageName=docker/compose versioning=semver
default = "v5.3.1"
default = "v5.5.0"
description = "Docker Compose release tag installed as the Docker CLI plugin."
}

variable "docker_buildx_version" {
type = string
# renovate: datasource=github-releases depName=docker-buildx packageName=docker/buildx versioning=semver
default = "v0.35.0"
default = "v0.36.1"
description = "Docker Buildx release tag installed as the Docker CLI plugin."
}

Expand Down
4 changes: 2 additions & 2 deletions providers/do/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ variable "runtime" {

docker = optional(object({
# renovate: datasource=github-releases depName=docker-compose packageName=docker/compose versioning=semver
compose_version = optional(string, "v5.3.1")
compose_version = optional(string, "v5.5.0")
# renovate: datasource=github-releases depName=docker-buildx packageName=docker/buildx versioning=semver
buildx_version = optional(string, "v0.35.0")
buildx_version = optional(string, "v0.36.1")
}), {})

managed_runtime = optional(object({
Expand Down
4 changes: 2 additions & 2 deletions providers/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ variable "runtime" {

docker = optional(object({
# renovate: datasource=github-releases depName=docker-compose packageName=docker/compose versioning=semver
compose_version = optional(string, "v5.3.1")
compose_version = optional(string, "v5.5.0")
# renovate: datasource=github-releases depName=docker-buildx packageName=docker/buildx versioning=semver
buildx_version = optional(string, "v0.35.0")
buildx_version = optional(string, "v0.36.1")
}), {})

managed_runtime = optional(object({
Expand Down
45 changes: 27 additions & 18 deletions providers/linode/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions providers/linode/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ variable "runtime" {

docker = optional(object({
# renovate: datasource=github-releases depName=docker-compose packageName=docker/compose versioning=semver
compose_version = optional(string, "v5.3.1")
compose_version = optional(string, "v5.5.0")
# renovate: datasource=github-releases depName=docker-buildx packageName=docker/buildx versioning=semver
buildx_version = optional(string, "v0.35.0")
buildx_version = optional(string, "v0.36.1")
}), {})

managed_runtime = optional(object({
Expand Down
2 changes: 1 addition & 1 deletion rootfs/home/cloud-compose/install-dependencies-cos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -euo pipefail

# renovate: datasource=docker depName=alpine packageName=alpine versioning=docker
ALPINE_BUILD_IMAGE="alpine:3.22@sha256:14358309a308569c32bdc37e2e0e9694be33a9d99e68afb0f5ff33cc1f695dce"
ALPINE_BUILD_IMAGE="alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b"
MAKE_VERSION="4.4.1"

valid_make_binary() {
Expand Down
Loading
Loading