Skip to content

Commit 55498c8

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 2aa0772 commit 55498c8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: |
1616
python --version
1717
- name: Clone Git repository (without depth limitation)
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
- name: Install dependencies

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Build distribution
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
with:
1212
submodules: true
1313
- name: Install uv

.github/workflows/python-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: |
2323
python --version
2424
- name: Clone Git repository
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
path: git-repo
2828
- name: Install Python package

.github/workflows/sounddevice-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
python --version
2929
- name: Clone Git repository (with submodules)
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
path: git-repo
3333
submodules: true

.github/workflows/static-analyzers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: |
1313
python --version
1414
- name: Clone Git repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
- name: Install sounddevice module
1717
run: |
1818
python -m pip install .

0 commit comments

Comments
 (0)