From 235f01c9563e407c63888795a573d0b56868e902 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 May 2022 11:48:11 +0600 Subject: [PATCH] Bump actions/setup-python from 2 to 3 (#756) * Bump actions/setup-python from 2 to 3 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Asif Saif Uddin --- .github/workflows/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 112484b8..5e4843fd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,8 @@ jobs: steps: - uses: "actions/checkout@v3" - - uses: "actions/setup-python@v2" + - uses: "actions/setup-python@v3" + with: python-version: "${{ matrix.python-version }}" @@ -38,7 +39,7 @@ jobs: # We always use a modern Python version for combining coverage to prevent # parsing errors in older versions for modern code. - - uses: "actions/setup-python@v2" + - uses: "actions/setup-python@v3" with: python-version: "3.8" @@ -62,7 +63,8 @@ jobs: steps: - uses: "actions/checkout@v3" - - uses: "actions/setup-python@v2" + - uses: "actions/setup-python@v3" + with: python-version: "3.8" @@ -88,7 +90,8 @@ jobs: steps: - uses: "actions/checkout@v3" - - uses: "actions/setup-python@v2" + - uses: "actions/setup-python@v3" + with: python-version: "3.8"