From ecc44265c4f6672681c19484667db3ffe59f59d6 Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Tue, 30 Sep 2025 21:32:12 +0000 Subject: [PATCH 1/2] Pin to Debian 12 (bookworm) The Dev images jumped to trixie in the latest release which doesn't have some packages yet Signed-off-by: James Sturtevant --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8aef28cdd..d0e07cbee 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,6 +1,6 @@ ## Dockerfile for devcontainer -FROM mcr.microsoft.com/devcontainers/base:debian AS base +FROM mcr.microsoft.com/devcontainers/base:bookworm AS base ARG USER=vscode ARG GROUP=vscode From 1774896a4d2ee09f77849cab2ddac24bbe64a1c7 Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Tue, 30 Sep 2025 21:40:32 +0000 Subject: [PATCH 2/2] Add correct permissions for nightly job Signed-off-by: James Sturtevant --- .github/workflows/RustNightly.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/RustNightly.yml b/.github/workflows/RustNightly.yml index 744a0f2f8..71aad6dba 100644 --- a/.github/workflows/RustNightly.yml +++ b/.github/workflows/RustNightly.yml @@ -8,6 +8,10 @@ on: # 12:00 AM, every 2 days - cron: '0 0 */2 * *' +permissions: + id-token: write + contents: read + jobs: musl: strategy: