From 12706c1fbe67ab969f7b525ec0e8c4c043d86797 Mon Sep 17 00:00:00 2001 From: Erik Golinelli Date: Sat, 2 Dec 2023 21:26:34 +0100 Subject: [PATCH] Modify jsDoc workflow permissions for GITHUB_TOKEN use The change involves the update of permissions settings in the .github/workflows/jsDoc.yml file. Now, the JSDoc Action deployment process will utilize GITHUB_TOKEN for authentication, a method that enhances its security measures and simplifies the process as compared to the former dependency on the deploy_key. --- .github/workflows/jsDoc.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/jsDoc.yml b/.github/workflows/jsDoc.yml index baab5a0..ccb94f3 100644 --- a/.github/workflows/jsDoc.yml +++ b/.github/workflows/jsDoc.yml @@ -1,3 +1,8 @@ +permissions: + contents: read + pages: write + id-token: write + name: JSDoc Action on: