diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-07-14 10:15:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 10:15:43 -0400 |
commit | dc2c813c2faefcb4dd7e93bddfbc9966dc266326 (patch) | |
tree | c8f34e7221e8a368992896dd6f49902d3a929815 | |
parent | caa540091218ba4ac8e3bf59f705dc9f184cdc4e (diff) | |
download | cmd2-git-dc2c813c2faefcb4dd7e93bddfbc9966dc266326.tar.gz |
Bump actions/setup-python from 2 to 4 (#1235)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v2...v4)
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Todd Leonhardt <todd.leonhardt@gmail.com>
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/doc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/format.yml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/mypy.yml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 568cae4e..92ac77dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: # Set fetch-depth: 0 to fetch all history for all branches and tags. fetch-depth: 0 # Needed for setuptools_scm to work correctly - name: Set up Python - uses: actions/setup-python@v2 # https://github.com/actions/setup-python + uses: actions/setup-python@v4 # https://github.com/actions/setup-python with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index ec7c7494..70bd661b 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -22,7 +22,7 @@ jobs: # Set fetch-depth: 0 to fetch all history for all branches and tags. fetch-depth: 0 # Needed for setuptools_scm to work correctly - name: Set up Python - uses: actions/setup-python@v2 # https://github.com/actions/setup-python + uses: actions/setup-python@v4 # https://github.com/actions/setup-python with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index e47a8fc1..6f0454d8 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -22,7 +22,7 @@ jobs: # Set fetch-depth: 0 to fetch all history for all branches and tags. fetch-depth: 0 # Needed for setuptools_scm to work correctly - name: Set up Python - uses: actions/setup-python@v2 # https://github.com/actions/setup-python + uses: actions/setup-python@v4 # https://github.com/actions/setup-python with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2df157d0..6b567238 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,7 +22,7 @@ jobs: # Set fetch-depth: 0 to fetch all history for all branches and tags. fetch-depth: 0 # Needed for setuptools_scm to work correctly - name: Set up Python - uses: actions/setup-python@v2 # https://github.com/actions/setup-python + uses: actions/setup-python@v4 # https://github.com/actions/setup-python with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index bb5b0931..6a4d0533 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -22,7 +22,7 @@ jobs: # Set fetch-depth: 0 to fetch all history for all branches and tags. fetch-depth: 0 # Needed for setuptools_scm to work correctly - name: Set up Python - uses: actions/setup-python@v2 # https://github.com/actions/setup-python + uses: actions/setup-python@v4 # https://github.com/actions/setup-python with: python-version: ${{ matrix.python-version }} - name: Install python prerequisites |