Skip to content

Commit 749d631

Browse files
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 31c06f9 commit 749d631

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
os: [ubuntu-latest, macos-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:
@@ -38,7 +38,7 @@ jobs:
3838
python-version: ["3.11", "3.12", "3.13", "3.14"]
3939
runs-on: windows-latest
4040
steps:
41-
- uses: actions/checkout@v6
41+
- uses: actions/checkout@v7
4242
- name: Install uv
4343
uses: astral-sh/setup-uv@v7
4444
with:

.github/workflows/changelog.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Check changelog action
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
- uses: tarides/changelog-check-action@v3
1717
with:
1818
changelog: CHANGELOG.md
@@ -21,7 +21,7 @@ jobs:
2121
name: Check changelog is in dedicated commit
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
with:
2626
fetch-depth: 0
2727
- name: Verify CHANGELOG.md changes are in own commit
@@ -33,7 +33,7 @@ jobs:
3333
name: Shellcheck
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v6
36+
- uses: actions/checkout@v7
3737
- name: Install shellcheck
3838
run: sudo apt-get install -y shellcheck
3939
- name: Run shellcheck

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
outputs:
1616
has_label: ${{ steps.check.outputs.has_label }}
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
- name: Check for label
2020
id: check
2121
env:
@@ -34,7 +34,7 @@ jobs:
3434
if: needs.check-label.outputs.has_label == 'true'
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v6
37+
- uses: actions/checkout@v7
3838
with:
3939
fetch-depth: 0
4040
- 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

0 commit comments

Comments
 (0)