Skip to content

Commit abb48be

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

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/build-docs.yml

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

1616
steps:
1717
- name: Check out the main branch
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
# We need a full clone rather than a shallow clone so that setuptools-scm
2020
# can compute the right version number for the docs.
2121
# xref: https://github.com/pypa/setuptools_scm/issues/431

.github/workflows/check-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
python-version: '3.10'
1717
- name: Check out the target commit
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
- name: Install necessary Python packages
2020
run: |
2121
python -m pip install -r style-requirements.txt

.github/workflows/publish-on-pypi.yml

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

1212
steps:
1313
- name: Check out the release commit
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Check out the target commit
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
- name: Install Linux packages for PySide6 support
2424
run: |
2525
sudo apt-get update
@@ -63,7 +63,7 @@ jobs:
6363

6464
steps:
6565
- name: Check out the target commit
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767
- name: Install Linux packages for wx support
6868
run: |
6969
sudo apt-get update

.github/workflows/test-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
python-version: '3.10'
2121
- name: Check out the target commit
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
- name: Install local package and documentation dependencies
2424
run: |
2525
python -m pip install -r docs/requirements.txt

.github/workflows/weekly-scheduled-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Check out the target commit
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Set up Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v5
2626
with:
@@ -44,7 +44,7 @@ jobs:
4444

4545
steps:
4646
- name: Check out the main branch
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
- name: Install Linux packages for PySide6 support
4949
run: |
5050
sudo apt-get update

0 commit comments

Comments
 (0)