From dc6539f74f7352e4e430b70340d6fda69b0ed38b Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Thu, 20 Nov 2025 20:42:48 -0600 Subject: [PATCH] feat: Downgrade actions/checkout from v6 to v5 This reverts the `actions/checkout` action to version 5 in the scheduled-updates workflow. The `persist-credentials` option has also been removed as it is not needed with `checkout@v5`. Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .github/workflows/scheduled-updates.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/scheduled-updates.yml b/.github/workflows/scheduled-updates.yml index be3517f61..a8e7a9f4d 100644 --- a/.github/workflows/scheduled-updates.yml +++ b/.github/workflows/scheduled-updates.yml @@ -15,9 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 - with: - persist-credentials: 'true' + uses: actions/checkout@v5 - name: Update firmware releases list run: |