Skip to content

Commit 4483560

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

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/bandit-scan.yml

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

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
# with:
1919
# # For pull requests, check out the base branch, not the PR branch
2020
# ref: ${{ github.event.pull_request.base.sha }}

.github/workflows/cicd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
- name: Install uv
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: Checkout code
67-
uses: actions/checkout@v5
67+
uses: actions/checkout@v6
6868

6969
- name: Set up Python ${{ matrix.python-version }}
7070
uses: actions/setup-python@v6

.github/workflows/deps-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
- name: 'Dependency Review'
1414
uses: actions/dependency-review-action@v4

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
needs: wait-for-ci
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
with:
3232
persist-credentials: false
3333
fetch-depth: 0
@@ -49,7 +49,7 @@ jobs:
4949
pull-requests: write # required by rhysd/changelog-from-release
5050
steps:
5151
- name: Checkout default branch for changelog
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
with:
5454
token: ${{ secrets.GITHUB_TOKEN }}
5555
ref: ${{ env.DEFAULT_BRANCH }}

0 commit comments

Comments
 (0)