Skip to content

Commit c98dce0

Browse files
Bump actions/checkout from 3 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 609f6f3 commit c98dce0

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 1
3333

.github/workflows/claude-issue-summarize.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
issues: write
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Run Claude Issue summarize
2020
uses: ./.github/actions/claude-issue-summarize-action

.github/workflows/claude-issue-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
issues: write
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Run Claude Issue Triage
2020
uses: ./.github/actions/claude-issue-triage-action

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
actions: read # Required for Claude to read CI results on PRs
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 1
3737

.github/workflows/deploy-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
# https://github.com/actions/checkout
2222
- name: Checkout
23-
uses: actions/checkout@v4.2.2
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
2626

.github/workflows/dragon-ai.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
result: ${{ steps.check.outputs.result }}
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v5
3030

3131
- name: Check for qualifying mention
3232
id: check
@@ -102,7 +102,7 @@ jobs:
102102
runs-on: ubuntu-latest
103103
steps:
104104
- name: Checkout repository
105-
uses: actions/checkout@v3
105+
uses: actions/checkout@v5
106106
with:
107107
fetch-depth: 0
108108
token: ${{ secrets.PAT_FOR_PR }} # Use PAT for checkout to allow committing later

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
# https://github.com/actions/checkout
2828
- name: Check out repository
29-
uses: actions/checkout@v4.2.2
29+
uses: actions/checkout@v5
3030
with:
3131
persist-credentials: false
3232

.github/workflows/pypi-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# https://github.com/actions/checkout
3030
- name: Check out repository
31-
uses: actions/checkout@v4.2.2
31+
uses: actions/checkout@v5
3232
with:
3333
persist-credentials: false
3434

0 commit comments

Comments
 (0)