From: Sofie Van Landeghem Date: Mon, 24 Nov 2025 14:58:32 +0000 (+0100) Subject: 👷 Upgrade `latest-changes` GitHub Action and pin `actions/checkout@v5` (#14403) X-Git-Tag: 0.122.0~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ab33b457182976c244d43fd0af838e72e6feee72;p=thirdparty%2Ffastapi%2Ffastapi.git 👷 Upgrade `latest-changes` GitHub Action and pin `actions/checkout@v5` (#14403) 👷 Upgrade latest-changes and pin actions/checkout@v5 --- diff --git a/.github/workflows/latest-changes.yml b/.github/workflows/latest-changes.yml index 3bff707c0b..b9e45ea629 100644 --- a/.github/workflows/latest-changes.yml +++ b/.github/workflows/latest-changes.yml @@ -24,7 +24,9 @@ jobs: env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - - uses: actions/checkout@v6 + # pin to actions/checkout@v5 for compatibility with latest-changes + # Ref: https://github.com/actions/checkout/issues/2313 + - uses: actions/checkout@v5 with: # To allow latest-changes to commit to the main branch token: ${{ secrets.FASTAPI_LATEST_CHANGES }} @@ -34,7 +36,7 @@ jobs: if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }} with: limit-access-to-actor: true - - uses: tiangolo/latest-changes@0.4.0 + - uses: tiangolo/latest-changes@0.4.1 with: token: ${{ secrets.GITHUB_TOKEN }} latest_changes_file: docs/en/docs/release-notes.md