From ed5372ed656d1cbeb182e61c23f4857fe59c3b10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 09:53:04 +0000 Subject: [PATCH] Bump the infra group with 2 updates Bumps the infra group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Bump node in /clotributor-apiserver in the infra group Bumps the infra group in /clotributor-apiserver with 1 update: node. Updates `node` from 24-alpine3.23 to 25-alpine3.23 --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: infra - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: infra - dependency-name: node dependency-version: 25-alpine3.23 dependency-type: direct:production dependency-group: infra ... Signed-off-by: dependabot[bot] --- .github/workflows/build-images.yml | 8 ++++---- .github/workflows/ci.yml | 6 +++--- clotributor-apiserver/Dockerfile | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index d7c5614..bf17555 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Login to OCI Registry id: login-ocir uses: oracle-actions/login-ocir@v1.3.0 @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Login to OCI Registry id: login-ocir uses: oracle-actions/login-ocir@v1.3.0 @@ -72,7 +72,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Login to OCI Registry id: login-ocir uses: oracle-actions/login-ocir@v1.3.0 @@ -99,7 +99,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Login to OCI Registry id: login-ocir uses: oracle-actions/login-ocir@v1.3.0 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34ed55b..61e87e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Rust uses: dtolnay/rust-toolchain@master with: @@ -30,9 +30,9 @@ jobs: NODE_OPTIONS: --max_old_space_size=4096 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ./web/node_modules key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} diff --git a/clotributor-apiserver/Dockerfile b/clotributor-apiserver/Dockerfile index 3e97c94..ec2bcce 100644 --- a/clotributor-apiserver/Dockerfile +++ b/clotributor-apiserver/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /clotributor/clotributor-apiserver RUN cargo build --release # Build frontend -FROM node:24-alpine3.23 AS frontend-builder +FROM node:25-alpine3.23 AS frontend-builder RUN apk --no-cache add git WORKDIR /web COPY web .