From 219c936d4e92dce8d0236f22bdd4d8f39ff6617d Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 31 Jan 2025 17:03:56 -0600 Subject: [PATCH] Rotate GitHub test PATs (#11147) As before, these are fine-grained PATs and will expire in 366 days. They're generated by splitting the token into three parts (by `_`) and base64 encoding. --- crates/uv/tests/it/common/mod.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/uv/tests/it/common/mod.rs b/crates/uv/tests/it/common/mod.rs index 8f2222218..233c1d686 100644 --- a/crates/uv/tests/it/common/mod.rs +++ b/crates/uv/tests/it/common/mod.rs @@ -1388,16 +1388,16 @@ pub fn make_project(dir: &Path, name: &str, body: &str) -> anyhow::Result<()> { // This is a fine-grained token that only has read-only access to the `uv-private-pypackage` repository pub const READ_ONLY_GITHUB_TOKEN: &[&str] = &[ "Z2l0aHViX3BhdA==", - "MTFCR0laQTdRMGdXeGsweHV6ekR2Mg==", - "NVZMaExzZmtFMHZ1ZEVNd0pPZXZkV040WUdTcmk2WXREeFB4TFlybGlwRTZONEpHV01FMnFZQWJVUm4=", + "MTFCR0laQTdRMGdSQ0JRQVdRTklyQgo=", + "cU5vakhySFV2a0ljNUVZY1pzd1k0bUFUWlBuU3VLVDV5eXR0WUxvcHh3UFI0NlpWTlRTblhvVHJHSXEK", ]; // This is a fine-grained token that only has read-only access to the `uv-private-pypackage-2` repository #[cfg(not(windows))] pub const READ_ONLY_GITHUB_TOKEN_2: &[&str] = &[ "Z2l0aHViX3BhdA==", - "MTFCR0laQTdRMHV1MEpwaFp4dFFyRwo=", - "cnNmNXJwMHk2WWpteVZvb2ZFc0c5WUs5b2NPcFY1aVpYTnNmdE05eEhaM0lGSExSSktDWTcxeVBVZXkK", + "MTFCR0laQTdRMGthWlY4dHppTDdQSwo=", + "SHIzUG1tRVZRSHMzQTl2a3NiVnB4Tmk0eTR3R2JVYklLck1qY05naHhMSFVMTDZGVElIMXNYeFhYN2gK", ]; /// Decode a split, base64 encoded authentication token.