diff --git a/Cargo.toml b/Cargo.toml index 617b4174..1450acee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" [workspace.dependencies] anyhow = { version = "1", default-features = false, features = ["std", "backtrace"] } -aya = { git = "https://github.com/aya-rs/aya.git", rev = "c29cd71cb4fe1440bc0d566633afa822f1b41fc5", default-features = false } +aya = { git = "https://github.com/aya-rs/aya.git", rev = "2bbc5a6e9527c1f41e1d1941be3ccb4120df0353", default-features = false } libc = { version = "0.2.159", default-features = false } prost = "0.14.0" prost-types = "0.14.0" diff --git a/fact/Cargo.toml b/fact/Cargo.toml index 768b88d0..62215dea 100644 --- a/fact/Cargo.toml +++ b/fact/Cargo.toml @@ -20,9 +20,9 @@ hyper-util = { version = "0.1.16", default-features = false } libc = { workspace = true } log = { version = "0.4.22", default-features = false } native-tls = { version = "0.2.14", features = ["alpn"] } -opentelemetry = { version = "0.32.0", optional = true } -opentelemetry-otlp = { version = "0.32.0", optional = true } -opentelemetry_sdk = { version = "0.32.1", features = [ "logs"], optional = true } +opentelemetry = { version = "0.33.0", optional = true } +opentelemetry-otlp = { version = "0.33.0", optional = true } +opentelemetry_sdk = { version = "0.33.0", features = [ "logs"], optional = true } openssl = "0.10.75" tonic = { workspace = true } tokio = { workspace = true } diff --git a/konflux.Containerfile b/konflux.Containerfile index a847410d..fb890fb1 100644 --- a/konflux.Containerfile +++ b/konflux.Containerfile @@ -1,6 +1,6 @@ FROM registry.access.redhat.com/ubi9/ubi-micro@sha256:7a0454cbd9bd847e8f6a63b6f0254a6efbeb6e0ed71a5d824a4f6cccbe626650 AS ubi-micro-base -FROM registry.access.redhat.com/ubi9/ubi@sha256:c5cc9c221baa8eb13093f90c31bb58c04d83f6afd14510d3496691f92566f99e AS package_installer +FROM registry.access.redhat.com/ubi9/ubi@sha256:a4b9ec09b1e790a53ef25b7777c539976abe519248264298e5194dcbceac8c31 AS package_installer COPY --from=ubi-micro-base / /out/ @@ -19,7 +19,7 @@ RUN dnf install -y \ dnf clean all --installroot=/out/ && \ rm -rf /out/var/cache/dnf /out/var/cache/yum -FROM registry.access.redhat.com/ubi9/ubi@sha256:c5cc9c221baa8eb13093f90c31bb58c04d83f6afd14510d3496691f92566f99e AS builder +FROM registry.access.redhat.com/ubi9/ubi@sha256:a4b9ec09b1e790a53ef25b7777c539976abe519248264298e5194dcbceac8c31 AS builder ARG FACT_TAG RUN echo "Checking required FACT_TAG"; [[ "${FACT_TAG}" != "" ]]