From 6b0b2ec1afb27dc00f99d5ab0bfb09b65cb6a41b Mon Sep 17 00:00:00 2001 From: Rasmus Rendal Date: Tue, 16 Jun 2026 22:36:06 +0100 Subject: [PATCH 1/2] chore: Fix clippy lint Part of our CI being broken, is that clippy lints like this were not being caught. --- src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6ad37ed..f2d1a45 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -287,10 +287,7 @@ pub enum OtelInitError { #[cfg(test)] mod tests { #![allow(clippy::expect_used)] - use super::{ - config::{ExporterConfig, OtelConfig, ProviderConfig}, - init_otel, - }; + use super::config::{ExporterConfig, OtelConfig, ProviderConfig}; use crate::config::StdoutLogsConfig; #[tokio::test] From ec0ec43fe92e899f2c962386b89ea9760db99743 Mon Sep 17 00:00:00 2001 From: Rasmus Rendal Date: Wed, 17 Jun 2026 10:01:11 +0100 Subject: [PATCH 2/2] fix: Update environment variables for publish crate action The variables had been changed, which was causing the CI job to fail. And the CI job isn't marked as required, so nobody noticed. --- .github/workflows/rust-workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust-workflow.yml b/.github/workflows/rust-workflow.yml index d65388a..b7680ae 100644 --- a/.github/workflows/rust-workflow.yml +++ b/.github/workflows/rust-workflow.yml @@ -47,8 +47,8 @@ jobs: needs: rust uses: famedly/backend-build-workflows/.github/workflows/publish-crate.yml@fcc2ec82a725d5c4c9c6a8f19e8df101c178dcb6 with: - registry-name: "crates-io" - registry-index: "https://github.com/rust-lang/crates.io-index" + crate_registry_name: "crates-io" + crate_registry_index_url: "https://github.com/rust-lang/crates.io-index" secrets: - CI_SSH_PRIVATE_KEY: ${{ secrets.CI_SSH_PRIVATE_KEY }} - registry-auth-token: ${{ secrets.CRATES_IO_TOKEN }} + CRATE_REGISTRY_SSH_PRIVKEY: ${{ secrets.CI_SSH_PRIVATE_KEY }} + CRATE_REGISTRY_AUTH_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}