We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
latest-changes
actions/checkout@v5
1 parent 16bd6cd commit 152cf06Copy full SHA for 152cf06
‎.github/workflows/latest-changes.yml‎
@@ -20,7 +20,9 @@ jobs:
20
latest-changes:
21
runs-on: ubuntu-latest
22
steps:
23
- - uses: actions/checkout@v6
+ # pin to actions/checkout@v5 for compatibility with latest-changes
24
+ # Ref: https://github.com/actions/checkout/issues/2313
25
+ - uses: actions/checkout@v5
26
with:
27
# To allow latest-changes to commit to the main branch
28
token: ${{ secrets.SQLMODEL_LATEST_CHANGES }}
@@ -30,7 +32,7 @@ jobs:
30
32
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
31
33
34
limit-access-to-actor: true
- - uses: tiangolo/[email protected].0
35
+ - uses: tiangolo/[email protected].1
36
37
token: ${{ secrets.GITHUB_TOKEN }}
38
latest_changes_file: docs/release-notes.md
0 commit comments