mirror of https://github.com/astral-sh/uv
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.
This commit is contained in:
parent
e6ead20aac
commit
219c936d4e
|
|
@ -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
|
// 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] = &[
|
pub const READ_ONLY_GITHUB_TOKEN: &[&str] = &[
|
||||||
"Z2l0aHViX3BhdA==",
|
"Z2l0aHViX3BhdA==",
|
||||||
"MTFCR0laQTdRMGdXeGsweHV6ekR2Mg==",
|
"MTFCR0laQTdRMGdSQ0JRQVdRTklyQgo=",
|
||||||
"NVZMaExzZmtFMHZ1ZEVNd0pPZXZkV040WUdTcmk2WXREeFB4TFlybGlwRTZONEpHV01FMnFZQWJVUm4=",
|
"cU5vakhySFV2a0ljNUVZY1pzd1k0bUFUWlBuU3VLVDV5eXR0WUxvcHh3UFI0NlpWTlRTblhvVHJHSXEK",
|
||||||
];
|
];
|
||||||
|
|
||||||
// This is a fine-grained token that only has read-only access to the `uv-private-pypackage-2` repository
|
// This is a fine-grained token that only has read-only access to the `uv-private-pypackage-2` repository
|
||||||
#[cfg(not(windows))]
|
#[cfg(not(windows))]
|
||||||
pub const READ_ONLY_GITHUB_TOKEN_2: &[&str] = &[
|
pub const READ_ONLY_GITHUB_TOKEN_2: &[&str] = &[
|
||||||
"Z2l0aHViX3BhdA==",
|
"Z2l0aHViX3BhdA==",
|
||||||
"MTFCR0laQTdRMHV1MEpwaFp4dFFyRwo=",
|
"MTFCR0laQTdRMGthWlY4dHppTDdQSwo=",
|
||||||
"cnNmNXJwMHk2WWpteVZvb2ZFc0c5WUs5b2NPcFY1aVpYTnNmdE05eEhaM0lGSExSSktDWTcxeVBVZXkK",
|
"SHIzUG1tRVZRSHMzQTl2a3NiVnB4Tmk0eTR3R2JVYklLck1qY05naHhMSFVMTDZGVElIMXNYeFhYN2gK",
|
||||||
];
|
];
|
||||||
|
|
||||||
/// Decode a split, base64 encoded authentication token.
|
/// Decode a split, base64 encoded authentication token.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue