From 55ef81be8d81cee9127f687aff44639848a62124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Quiroz?= Date: Fri, 16 Dec 2022 17:35:59 -0300 Subject: [PATCH] Update src/utils/fetchLatestReleaseCommit.ts Co-authored-by: Paul Wackerow <54227730+wackerow@users.noreply.github.com> --- src/utils/fetchLatestReleaseCommit.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/utils/fetchLatestReleaseCommit.ts b/src/utils/fetchLatestReleaseCommit.ts index b0d6612dc9..2f28465a69 100644 --- a/src/utils/fetchLatestReleaseCommit.ts +++ b/src/utils/fetchLatestReleaseCommit.ts @@ -2,8 +2,7 @@ import { ALL_GETH_COMMITS_URL } from '../constants'; export const fetchLatestReleaseCommit = (versionNumber: string) => { const headers = new Headers({ - // Note: this token expires on Dec 16, 2023 - // check fine-grained tokens https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token#about-personal-access-tokens + // About personal access tokens https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token#about-personal-access-tokens Authorization: 'Token ' + process.env.GITHUB_TOKEN_READ_ONLY });