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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:
env:
CARGO_TERM_COLOR: always
# Pinned toolchain for linting
ACTIONS_LINTS_TOOLCHAIN: 1.85.0
ACTIONS_LINTS_TOOLCHAIN: 1.92.0

jobs:
linting:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resolver = "3"

[workspace.package]
edition = "2024"
rust-version = "1.85"
rust-version = "1.92"

[workspace.dependencies]
anyhow = "1.0.100"
Expand Down
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

ARG build_type
# Dependency build stage
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
ARG build_type
WORKDIR /build

Expand All @@ -31,6 +31,6 @@ COPY operator/src operator/src
RUN cargo build -p operator $(if [ "$build_type" = release ]; then echo --release; fi)

# Distribution stage
FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43
ARG build_type
COPY --from=builder "/build/target/$build_type/operator" /usr/bin
4 changes: 2 additions & 2 deletions attestation-key-register/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: CC0-1.0

ARG build_type
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
ARG build_type
WORKDIR /build

Expand All @@ -26,7 +26,7 @@ RUN sed -i 's/members =.*/members = ["lib", "attestation-key-register"]/' Cargo.
COPY attestation-key-register/src attestation-key-register/src
RUN cargo build -p attestation-key-register $(if [ "$build_type" = release ]; then echo --release; fi)

FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43
ARG build_type
COPY --from=builder "/build/target/$build_type/attestation-key-register" /usr/bin
EXPOSE 8001
Expand Down
4 changes: 2 additions & 2 deletions compute-pcrs/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: CC0-1.0

ARG build_type
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
ARG build_type
WORKDIR /build

Expand All @@ -28,7 +28,7 @@ RUN sed -i 's/members =.*/members = ["compute-pcrs", "lib"]/' Cargo.toml && \
COPY compute-pcrs/src compute-pcrs/src
RUN cargo build -p compute-pcrs $(if [ "$build_type" = release ]; then echo --release; fi)

FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43
ARG build_type
COPY --from=builder "/build/target/$build_type/compute-pcrs" /usr/bin
COPY --from=builder /build/reference-values /reference-values
4 changes: 2 additions & 2 deletions register-server/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: CC0-1.0

ARG build_type
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
ARG build_type
WORKDIR /build

Expand All @@ -27,7 +27,7 @@ RUN sed -i 's/members =.*/members = ["lib", "register-server"]/' Cargo.toml && \
COPY register-server/src register-server/src
RUN cargo build -p register-server $(if [ "$build_type" = release ]; then echo --release; fi)

FROM quay.io/fedora/fedora:42
FROM quay.io/fedora/fedora:43
ARG build_type
COPY --from=builder "/build/target/$build_type/register-server" /usr/bin
EXPOSE 3030
Expand Down
Loading