From 60afbd85c23412c04579c860a3f838c88628500f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 16:53:46 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/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] --- .github/workflows/ets-from-source.yml | 2 +- .github/workflows/publish-on-pypi.yml | 2 +- .github/workflows/run-style-checks.yml | 2 +- .github/workflows/run-tests.yml | 4 ++-- .github/workflows/test-docs-with-edm.yml | 2 +- .github/workflows/test-with-edm.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ets-from-source.yml b/.github/workflows/ets-from-source.yml index 08e0df398..fd6f5292b 100644 --- a/.github/workflows/ets-from-source.yml +++ b/.github/workflows/ets-from-source.yml @@ -26,7 +26,7 @@ jobs: # relative path between the site-packages and the source directory. EDM_ROOT_DIRECTORY: ${{ github.workspace }}/.edm steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Qt dependencies uses: ./.github/actions/install-qt-support if: matrix.toolkit != 'wx' diff --git a/.github/workflows/publish-on-pypi.yml b/.github/workflows/publish-on-pypi.yml index c971f6d52..e6c7fb33c 100644 --- a/.github/workflows/publish-on-pypi.yml +++ b/.github/workflows/publish-on-pypi.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Check out the release commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/.github/workflows/run-style-checks.yml b/.github/workflows/run-style-checks.yml index 89ceabbd8..3ceb926b1 100644 --- a/.github/workflows/run-style-checks.yml +++ b/.github/workflows/run-style-checks.yml @@ -13,7 +13,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b49c8d174..f794657e7 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Check out the target commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Qt dependencies uses: ./.github/actions/install-qt-support - name: Set up Python ${{ matrix.python-version }} @@ -63,7 +63,7 @@ jobs: steps: - name: Check out the target commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: diff --git a/.github/workflows/test-docs-with-edm.yml b/.github/workflows/test-docs-with-edm.yml index 1652c1557..daca90dfb 100644 --- a/.github/workflows/test-docs-with-edm.yml +++ b/.github/workflows/test-docs-with-edm.yml @@ -28,7 +28,7 @@ jobs: # relative path between the site-packages and the source directory. EDM_ROOT_DIRECTORY: ${{ github.workspace }}/.edm steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Qt dependencies uses: ./.github/actions/install-qt-support if: matrix.toolkit != 'wx' diff --git a/.github/workflows/test-with-edm.yml b/.github/workflows/test-with-edm.yml index 26ab47984..8bf666f94 100644 --- a/.github/workflows/test-with-edm.yml +++ b/.github/workflows/test-with-edm.yml @@ -29,7 +29,7 @@ jobs: # relative path between the site-packages and the source directory. EDM_ROOT_DIRECTORY: ${{ github.workspace }}/.edm steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Qt dependencies uses: ./.github/actions/install-qt-support if: matrix.toolkit != 'wx'