From b85eb642a5afb771e9933dbba403ee3f64ed041e Mon Sep 17 00:00:00 2001 From: Ashutosh Narkar Date: Mon, 18 Dec 2023 15:02:24 -0800 Subject: [PATCH] .github/workflows: Update name of the checkout action token This PR attempts to fix the failures seen in the Post Merge workflow. Previously the token used in the checkout action had probably expired and a new token was generated to test out this hypothesis. Now that the Post Merge workflow succeeds, we're renaming the token as before and updating the token value in the repo. Signed-off-by: Ashutosh Narkar --- .github/workflows/post-merge.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/post-merge.yaml b/.github/workflows/post-merge.yaml index f0d99e0b32..99c7967c57 100644 --- a/.github/workflows/post-merge.yaml +++ b/.github/workflows/post-merge.yaml @@ -13,7 +13,7 @@ jobs: - name: Check out code uses: actions/checkout@v4 with: - token: ${{ secrets.GH_PUSH_TOKEN_2 }} # required to push to protected branch below + token: ${{ secrets.GH_PUSH_TOKEN }} # required to push to protected branch below - name: Generate run: make clean generate docs-generate-cli-docs