From 32c584d4d71ef96f57d1f650f45580ce300874b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 04:32:45 +0000 Subject: [PATCH 1/2] build(deps): bump hadolint/hadolint-action from 3.1.0 to 3.2.0 Bumps [hadolint/hadolint-action](https://github.com/hadolint/hadolint-action) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/hadolint/hadolint-action/releases) - [Changelog](https://github.com/hadolint/hadolint-action/blob/master/.releaserc) - [Commits](https://github.com/hadolint/hadolint-action/compare/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: hadolint/hadolint-action dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/hadolint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hadolint.yml b/.github/workflows/hadolint.yml index 587fb28..a342a6e 100644 --- a/.github/workflows/hadolint.yml +++ b/.github/workflows/hadolint.yml @@ -9,7 +9,7 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v5 - - uses: hadolint/hadolint-action@v3.1.0 + - uses: hadolint/hadolint-action@v3.2.0 with: dockerfile: Containerfile recursive: true From 9473447e78cf820b32c3d5f18ddb664415b38240 Mon Sep 17 00:00:00 2001 From: David Rabkin Date: Thu, 4 Sep 2025 18:33:05 +0300 Subject: [PATCH 2/2] fix(ubi): add package versions --- container/ubi8/Containerfile | 5 ++--- container/ubi9/Containerfile | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/container/ubi8/Containerfile b/container/ubi8/Containerfile index dd0babe..b80f4d6 100644 --- a/container/ubi8/Containerfile +++ b/container/ubi8/Containerfile @@ -20,11 +20,10 @@ RUN \ bash-4.4.20 \ diffutils-3.6 \ findutils-4.6.0 \ - perl-Digest-SHA \ + perl-Digest-SHA-6.02 \ procps-ng-3.3.15 \ - shadow-utils-2:4.6 \ tzdata-2025b \ - util-linux \ + util-linux-2.32.1 \ && microdnf clean all --disableplugin=subscription-manager \ && useradd --create-home "$USER" \ && curl --location --output "$CM_BIN" --silent "$CM_URL" \ diff --git a/container/ubi9/Containerfile b/container/ubi9/Containerfile index 128fa76..6a54131 100644 --- a/container/ubi9/Containerfile +++ b/container/ubi9/Containerfile @@ -20,11 +20,10 @@ RUN \ bash-5.1.8 \ diffutils-3.7 \ findutils-4.8.0 \ - perl-Digest-SHA \ + perl-Digest-SHA-6.02 \ procps-ng-3.3.17 \ - shadow-utils-2:4.9 \ tzdata-2025b \ - util-linux \ + util-linux-2.37.4 \ && microdnf clean all --disableplugin=subscription-manager \ && useradd --create-home "$USER" \ && curl --location --output "$CM_BIN" --silent "$CM_URL" \