Skip to content

Commit a8091c0

Browse files
ci(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d024c22 commit a8091c0

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/bumpversion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
app-id: ${{ vars.APP_ID }}
2121
private-key: ${{ secrets.PRIVATE_KEY }}
2222
- name: Check out
23-
uses: actions/checkout@v6
23+
uses: actions/checkout@v7
2424
with:
2525
token: ${{ steps.app-token.outputs.token }}
2626
fetch-depth: 0

.github/workflows/docspublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: ${{ github.repository == 'commitizen-tools/commitizen' }}
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515
with:
1616
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
1717
fetch-depth: 0
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
needs: update-cli-screenshots
5454
steps:
55-
- uses: actions/checkout@v6
55+
- uses: actions/checkout@v7
5656
with:
5757
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
5858
fetch-depth: 0

.github/workflows/homebrewpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: ${{ github.repository == 'commitizen-tools/commitizen' && github.event.workflow_run.conclusion == 'success' }}
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v7
1616
- name: Set up Python
1717
uses: astral-sh/setup-uv@v7
1818
- name: Install dependencies

.github/workflows/label_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313
with:
1414
sparse-checkout: |
1515
.github/labeler.yml

.github/workflows/links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
permissions:
1414
issues: write # required for Broken Links Report
1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@v7
1717

1818
- name: Link Checker
1919
id: lychee

.github/workflows/pr-bump-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Check out PR head
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131
with:
3232
ref: ${{ github.event.pull_request.head.sha }}
3333
fetch-depth: 0

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
outputs:
1414
relevant: ${{ steps.filter.outputs.relevant }}
1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@v7
1717
with:
1818
fetch-depth: 0
1919
- id: filter
@@ -36,7 +36,7 @@ jobs:
3636
if: ${{ needs.detect_changes.outputs.relevant != 'true' }}
3737
run: |
3838
echo "No relevant file changes; skipping tests and linters."
39-
- uses: actions/checkout@v6
39+
- uses: actions/checkout@v7
4040
if: ${{ needs.detect_changes.outputs.relevant == 'true' }}
4141
with:
4242
fetch-depth: 0

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo "::error::Dispatch ref '${TAG}' is not an existing tag"
3333
exit 1
3434
fi
35-
- uses: actions/checkout@v6
35+
- uses: actions/checkout@v7
3636
with:
3737
fetch-depth: 0
3838
ref: ${{ github.event_name == 'workflow_dispatch' && format('refs/tags/{0}', github.event.inputs.ref) || github.ref }}

0 commit comments

Comments
 (0)