Skip to content

Commit 388e211

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

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ets-from-source.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# relative path between the site-packages and the source directory.
2727
EDM_ROOT_DIRECTORY: ${{ github.workspace }}/.edm
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- name: Install Qt dependencies
3131
uses: ./.github/actions/install-qt-support
3232
if: matrix.toolkit != 'wx'

.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@v3
14+
uses: actions/checkout@v4
1515
- name: Set up Python
1616
uses: actions/setup-python@v4
1717
with:

.github/workflows/run-style-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
1818
uses: actions/setup-python@v4
1919
with:

.github/workflows/run-tests.yml

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

2727
steps:
2828
- name: Check out the target commit
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
- name: Install Qt dependencies
3131
uses: ./.github/actions/install-qt-support
3232
- name: Set up Python ${{ matrix.python-version }}
@@ -61,7 +61,7 @@ jobs:
6161

6262
steps:
6363
- name: Check out the target commit
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v4
6565
- name: Set up Python ${{ matrix.python-version }}
6666
uses: actions/setup-python@v4
6767
with:

.github/workflows/test-docs-with-edm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# relative path between the site-packages and the source directory.
2929
EDM_ROOT_DIRECTORY: ${{ github.workspace }}/.edm
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Install Qt dependencies
3333
uses: ./.github/actions/install-qt-support
3434
if: matrix.toolkit != 'wx'

.github/workflows/test-with-edm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# relative path between the site-packages and the source directory.
3131
EDM_ROOT_DIRECTORY: ${{ github.workspace }}/.edm
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- name: Install Qt dependencies
3535
uses: ./.github/actions/install-qt-support
3636
if: matrix.toolkit != 'wx'

0 commit comments

Comments
 (0)