Skip to content

Commit f80fb76

Browse files
committed
fix(github): update docs links to oidc
1 parent 682eccf commit f80fb76

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/run/run_environment/github_actions/provider.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ impl RunEnvironmentProvider for GitHubActionsProvider {
284284
info!(
285285
"CodSpeed now supports OIDC tokens for authentication.\n\
286286
Benefit from enhanced security by adding the `id-token: write` permission to your workflow and removing the static token from your configuration.\n\
287-
Learn more at https://codspeed.io/docs/integrations/ci/github-actions#openid-connect-oidc-authentication"
287+
Learn more at https://codspeed.io/docs/integrations/ci/github-actions/configuration#oidc-recommended"
288288
);
289289

290290
return Ok(());
@@ -305,14 +305,14 @@ impl RunEnvironmentProvider for GitHubActionsProvider {
305305
bail!(
306306
"Unable to retrieve OIDC token for authentication. \n\
307307
Make sure your workflow has the `id-token: write` permission set. \n\
308-
See https://codspeed.io/docs/integrations/ci/github-actions#openid-connect-oidc-authentication"
308+
See https://codspeed.io/docs/integrations/ci/github-actions/configuration#oidc-recommended"
309309
)
310310
}
311311

312312
info!(
313313
"CodSpeed now supports OIDC tokens for authentication.\n\
314314
Benefit from enhanced security and faster processing times by adding the `id-token: write` permission to your workflow.\n\
315-
Learn more at https://codspeed.io/docs/integrations/ci/github-actions#openid-connect-oidc-authentication"
315+
Learn more at https://codspeed.io/docs/integrations/ci/github-actions/configuration#oidc-recommended"
316316
);
317317

318318
return Ok(());
@@ -343,7 +343,7 @@ impl RunEnvironmentProvider for GitHubActionsProvider {
343343
bail!(
344344
"Unable to retrieve OIDC token for authentication. \n\
345345
Make sure your workflow has the `id-token: write` permission set. \n\
346-
See https://codspeed.io/docs/integrations/ci/github-actions#openid-connect-oidc-authentication"
346+
See https://codspeed.io/docs/integrations/ci/github-actions/configuration#oidc-recommended"
347347
)
348348
} else {
349349
warn!("Failed to retrieve OIDC token for authentication.");

0 commit comments

Comments
 (0)