From 5d3e979cf9127ff08475b7e69a2fe826fca21834 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 12:57:38 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/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] --- .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 ae9cd9c8b..7c1edeedc 100644 --- a/.github/workflows/ets-from-source.yml +++ b/.github/workflows/ets-from-source.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 20 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - 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 e6c7fb33c..7f971d075 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@v4 + uses: actions/checkout@v6 - 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 20e30c33b..1a6d7cbcf 100644 --- a/.github/workflows/run-style-checks.yml +++ b/.github/workflows/run-style-checks.yml @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - 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 42f4e7e52..04fa786f4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Check out the target commit - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Qt dependencies uses: ./.github/actions/install-qt-support - name: Set up Python ${{ matrix.python-version }} @@ -61,7 +61,7 @@ jobs: steps: - name: Check out the target commit - uses: actions/checkout@v4 + uses: actions/checkout@v6 - 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 4c7023f47..3d2f92712 100644 --- a/.github/workflows/test-docs-with-edm.yml +++ b/.github/workflows/test-docs-with-edm.yml @@ -21,7 +21,7 @@ jobs: timeout-minutes: 20 # should be plenty, it's usually < 5 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - 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 839321450..a1af5efaf 100644 --- a/.github/workflows/test-with-edm.yml +++ b/.github/workflows/test-with-edm.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 20 # should be plenty, it's usually < 5 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install Qt dependencies uses: ./.github/actions/install-qt-support if: matrix.toolkit != 'wx'