Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: 'false'
- name: Bootstrap repository
Expand All @@ -44,14 +44,14 @@ jobs:
contents: write
steps:
- name: Checkout the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
# Necessary for hooks to succeed during tests for commits/schedule
if: github.event_name != 'pull_request'
with:
fetch-depth: 0
persist-credentials: 'false'
- name: Checkout the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
# Necessary for hooks to succeed during tests for PRs
if: github.event_name == 'pull_request'
with:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
exit 1
fi
- name: Checkout the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Scan workflow logs for warnings and errors
run: scripts/scan_workflow_logs.sh ${{ github.run_id }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
tag: ${{ steps.release.outputs.tag }}
steps:
- name: Checkout the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout the repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: 'false'
- name: Bootstrap repository
Expand Down
Loading