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.
1 parent cf1f93e commit 48b3869Copy full SHA for 48b3869
.github/workflows/latest-changes.yml
@@ -24,7 +24,9 @@ jobs:
24
env:
25
GITHUB_CONTEXT: ${{ toJson(github) }}
26
run: echo "$GITHUB_CONTEXT"
27
- - uses: actions/checkout@v6
+ # pin to actions/checkout@v5 for compatibility with latest-changes
28
+ # Ref: https://github.com/actions/checkout/issues/2313
29
+ - uses: actions/checkout@v5
30
with:
31
# To allow latest-changes to commit to the main branch
32
token: ${{ secrets.LATEST_CHANGES }}
@@ -34,7 +36,7 @@ jobs:
34
36
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
35
37
38
limit-access-to-actor: true
- - uses: tiangolo/[email protected].0
39
+ - uses: tiangolo/[email protected].1
40
41
token: ${{ secrets.GITHUB_TOKEN }}
42
latest_changes_file: release-notes.md
0 commit comments