From dc065c6f16cc1df3afff482374e56fc396d8c4ec Mon Sep 17 00:00:00 2001 From: lifehackerhansol Date: Mon, 25 May 2026 09:06:18 -0700 Subject: [PATCH] workflow: drop actions/checkout to v4 (#185) There is a known regression upstream that causes authenticating repos to die (even though the repo doesn't even need authentication...) Drop down to v4 which doesn't have this issue. --- .github/workflows/nightly.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index f51e550..7d6993e 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -43,7 +43,7 @@ jobs: DOTNET_NOLOGO: true steps: - name: Checkout repo - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: submodules: true - uses: actions/setup-dotnet@v5 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 055ab6c..dabb2c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: DOTNET_NOLOGO: true steps: - name: Checkout repo - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: submodules: true - uses: actions/setup-dotnet@v5