Skip to content

Commit c961063

Browse files
Build(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 e3b8f0d commit c961063

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
1111
runs-on: ${{ matrix.os }}
1212
steps:
13-
- uses: actions/checkout@v6
13+
- uses: actions/checkout@v7
1414
- name: Install uv
1515
uses: astral-sh/setup-uv@v7
1616
with:

.github/workflows/changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Check changelog is in dedicated commit
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v7
2424
with:
2525
fetch-depth: 0
2626
- name: Verify CHANGELOG.md changes are in own commit

.github/workflows/ci-per-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
has_label: ${{ steps.check.outputs.has_label }}
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
- name: Check for label
2121
id: check
2222
env:
@@ -35,7 +35,7 @@ jobs:
3535
if: needs.check-label.outputs.has_label == 'true'
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v6
38+
- uses: actions/checkout@v7
3939
with:
4040
fetch-depth: 0
4141
- name: Install uv

.github/workflows/pr-hygiene.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Check PR size
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
with:
1717
fetch-depth: 0
1818
- name: Download script
@@ -29,7 +29,7 @@ jobs:
2929
name: Check commit messages
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v6
32+
- uses: actions/checkout@v7
3333
with:
3434
fetch-depth: 0
3535
- name: Download scripts

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Shellcheck
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313
- name: Install shellcheck
1414
run: sudo apt-get install -y shellcheck
1515
- name: Run shellcheck

0 commit comments

Comments
 (0)