Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #16598 - lnicola:fix-release, r=lnicola
internal: Downgrade actions/checkout in release workflow
| -rw-r--r-- | .github/workflows/release.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index adb1c85051..88adc3bc75 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -59,7 +59,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: fetch-depth: ${{ env.FETCH_DEPTH }} |