From b9581d2811044b751b87745760971a95869723c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jul 2023 09:35:54 -0400 Subject: [PATCH] Bump actions/setup-python from 4.6.1 to 4.7.0 (#516) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.6.1 to 4.7.0.
Release notes

Sourced from actions/setup-python's releases.

v4.7.0

In scope of this release, the support for reading python version from pyproject.toml was added (actions/setup-python#669).

      - name: Setup Python
        uses: actions/setup-python@v4
        with:
          python-version-file: pyproject.toml

Besides, it includes such changes as:

New Contributors

Full Changelog: https://github.com/actions/setup-python/compare/v4...v4.7.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-python&package-manager=github_actions&previous-version=4.6.1&new-version=4.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci-cd.yml | 20 ++++++++++---------- .github/workflows/reusable-linters.yml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 2535f96e0..47497f08e 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -119,7 +119,7 @@ jobs: ${{ steps.changelog-draft-name.outputs.filename-base }}.rst steps: - name: Switch to using Python 3.11 by default - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: 3.11 - name: >- @@ -392,7 +392,7 @@ jobs: steps: - name: Switch to using Python 3.11 - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: 3.11 @@ -616,7 +616,7 @@ jobs: source-tarball-name: ${{ needs.pre-setup.outputs.sdist-artifact-name }} workflow-artifact-name: ${{ env.dists-artifact-name }} - name: Install python ${{ matrix.python-version }} - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: ${{ matrix.python-version }} - name: Install libssh from brew @@ -866,7 +866,7 @@ jobs: steps: - name: Switch to using Python 3.11 by default - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: 3.11 @@ -1034,7 +1034,7 @@ jobs: steps: - name: Switch to using Python 3.11 by default - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: 3.11 @@ -1169,7 +1169,7 @@ jobs: steps: - name: Switch to using Python 3.11 - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: 3.11 @@ -1684,7 +1684,7 @@ jobs: }} libssh-dev - name: Switch 🐍 to v${{ matrix.python-version }} id: python-install - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: ${{ matrix.python-version }} @@ -1907,7 +1907,7 @@ jobs: }} libssh-dev - name: Switch 🐍 to v${{ matrix.python-version }} id: python-install - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: ${{ matrix.python-version }} @@ -2082,7 +2082,7 @@ jobs: steps: - name: Switch to using Python 3.11 by default - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: 3.11 @@ -2437,7 +2437,7 @@ jobs: path: dist/ - name: Switch to Python 3.11 - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: 3.11 - name: >- diff --git a/.github/workflows/reusable-linters.yml b/.github/workflows/reusable-linters.yml index 55d9b7c6c..1f7206a81 100644 --- a/.github/workflows/reusable-linters.yml +++ b/.github/workflows/reusable-linters.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v3.5.3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4.6.1 + uses: actions/setup-python@v4.7.0 with: python-version: ${{ matrix.python-version }} - name: >-