diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index d71e996b6cb..c3b2cc270ad 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_kyu2.yml b/.github/workflows/flake8_kyu2.yml index 6fccdc3255d..c0f4fcc64e1 100644 --- a/.github/workflows/flake8_kyu2.yml +++ b/.github/workflows/flake8_kyu2.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_kyu3.yml b/.github/workflows/flake8_kyu3.yml index 44891f5de82..95058be734e 100644 --- a/.github/workflows/flake8_kyu3.yml +++ b/.github/workflows/flake8_kyu3.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_kyu4.yml b/.github/workflows/flake8_kyu4.yml index 7bb1d514f93..39a05f85ab7 100644 --- a/.github/workflows/flake8_kyu4.yml +++ b/.github/workflows/flake8_kyu4.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_kyu5.yml b/.github/workflows/flake8_kyu5.yml index 264bf1026f5..6a0a1196c10 100644 --- a/.github/workflows/flake8_kyu5.yml +++ b/.github/workflows/flake8_kyu5.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_kyu6.yml b/.github/workflows/flake8_kyu6.yml index 0e1511cdd40..132578674a9 100644 --- a/.github/workflows/flake8_kyu6.yml +++ b/.github/workflows/flake8_kyu6.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_kyu7.yml b/.github/workflows/flake8_kyu7.yml index d7b0c00eca5..1504934182d 100644 --- a/.github/workflows/flake8_kyu7.yml +++ b/.github/workflows/flake8_kyu7.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_kyu8.yml b/.github/workflows/flake8_kyu8.yml index 76c4913f8a4..d87da1df3af 100644 --- a/.github/workflows/flake8_kyu8.yml +++ b/.github/workflows/flake8_kyu8.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/flake8_utils.yml b/.github/workflows/flake8_utils.yml index 3c1d7b80621..7f6cbe11c03 100644 --- a/.github/workflows/flake8_utils.yml +++ b/.github/workflows/flake8_utils.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 33dd45f011b..1efa20e37eb 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/mypy_kyu2.yml b/.github/workflows/mypy_kyu2.yml index 42ef9826272..66010778db9 100644 --- a/.github/workflows/mypy_kyu2.yml +++ b/.github/workflows/mypy_kyu2.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/mypy_kyu3.yml b/.github/workflows/mypy_kyu3.yml index e1dca7bdc3d..31396d0d8a2 100644 --- a/.github/workflows/mypy_kyu3.yml +++ b/.github/workflows/mypy_kyu3.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/mypy_kyu4.yml b/.github/workflows/mypy_kyu4.yml index ad7113f2628..28d5144f267 100644 --- a/.github/workflows/mypy_kyu4.yml +++ b/.github/workflows/mypy_kyu4.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/mypy_kyu5.yml b/.github/workflows/mypy_kyu5.yml index b5346b49912..0b86a8dba6d 100644 --- a/.github/workflows/mypy_kyu5.yml +++ b/.github/workflows/mypy_kyu5.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/mypy_kyu6.yml b/.github/workflows/mypy_kyu6.yml index 6dba6adafe2..d501ac0ddd4 100644 --- a/.github/workflows/mypy_kyu6.yml +++ b/.github/workflows/mypy_kyu6.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/mypy_kyu7.yml b/.github/workflows/mypy_kyu7.yml index d9f679e7a1a..9451a04e184 100644 --- a/.github/workflows/mypy_kyu7.yml +++ b/.github/workflows/mypy_kyu7.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/mypy_kyu8.yml b/.github/workflows/mypy_kyu8.yml index f7a68a35912..8867e04836c 100644 --- a/.github/workflows/mypy_kyu8.yml +++ b/.github/workflows/mypy_kyu8.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle.yml b/.github/workflows/pydocstyle.yml index b35b5681fd1..549b4722f5a 100644 --- a/.github/workflows/pydocstyle.yml +++ b/.github/workflows/pydocstyle.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle_kyu2.yml b/.github/workflows/pydocstyle_kyu2.yml index 3d74d28dbf4..29e594c4229 100644 --- a/.github/workflows/pydocstyle_kyu2.yml +++ b/.github/workflows/pydocstyle_kyu2.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle_kyu3.yml b/.github/workflows/pydocstyle_kyu3.yml index e12046c882e..83992cda8dd 100644 --- a/.github/workflows/pydocstyle_kyu3.yml +++ b/.github/workflows/pydocstyle_kyu3.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle_kyu4.yml b/.github/workflows/pydocstyle_kyu4.yml index c1608cf6289..fb70afcdd8b 100644 --- a/.github/workflows/pydocstyle_kyu4.yml +++ b/.github/workflows/pydocstyle_kyu4.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle_kyu5.yml b/.github/workflows/pydocstyle_kyu5.yml index 1c73f1be13e..1880ef83b80 100644 --- a/.github/workflows/pydocstyle_kyu5.yml +++ b/.github/workflows/pydocstyle_kyu5.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle_kyu6.yml b/.github/workflows/pydocstyle_kyu6.yml index 36ff8fca00a..0515a24fbd6 100644 --- a/.github/workflows/pydocstyle_kyu6.yml +++ b/.github/workflows/pydocstyle_kyu6.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle_kyu7.yml b/.github/workflows/pydocstyle_kyu7.yml index f4dcdd17083..f4d2b213e72 100644 --- a/.github/workflows/pydocstyle_kyu7.yml +++ b/.github/workflows/pydocstyle_kyu7.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pydocstyle_kyu8.yml b/.github/workflows/pydocstyle_kyu8.yml index d62c84880bb..5ab41c07069 100644 --- a/.github/workflows/pydocstyle_kyu8.yml +++ b/.github/workflows/pydocstyle_kyu8.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 64c9c71ce9e..a811b85e263 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_kyu2.yml b/.github/workflows/pylint_kyu2.yml index 7b70f90c9da..0d224350fc9 100644 --- a/.github/workflows/pylint_kyu2.yml +++ b/.github/workflows/pylint_kyu2.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_kyu3.yml b/.github/workflows/pylint_kyu3.yml index e7f19f9a5c6..2aa2c5b1f78 100644 --- a/.github/workflows/pylint_kyu3.yml +++ b/.github/workflows/pylint_kyu3.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_kyu4.yml b/.github/workflows/pylint_kyu4.yml index 24d83a30857..24ed74a318b 100644 --- a/.github/workflows/pylint_kyu4.yml +++ b/.github/workflows/pylint_kyu4.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_kyu5.yml b/.github/workflows/pylint_kyu5.yml index 194f63eade8..dac97ecb0ec 100644 --- a/.github/workflows/pylint_kyu5.yml +++ b/.github/workflows/pylint_kyu5.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_kyu6.yml b/.github/workflows/pylint_kyu6.yml index 134de22699d..a8512f568ce 100644 --- a/.github/workflows/pylint_kyu6.yml +++ b/.github/workflows/pylint_kyu6.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_kyu7.yml b/.github/workflows/pylint_kyu7.yml index e3d5ae538c0..39ae02396f8 100644 --- a/.github/workflows/pylint_kyu7.yml +++ b/.github/workflows/pylint_kyu7.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_kyu8.yml b/.github/workflows/pylint_kyu8.yml index ed22f92f080..a61cf2ea75a 100644 --- a/.github/workflows/pylint_kyu8.yml +++ b/.github/workflows/pylint_kyu8.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pylint_utils.yml b/.github/workflows/pylint_utils.yml index 91f6b429d86..7e7038279d6 100644 --- a/.github/workflows/pylint_utils.yml +++ b/.github/workflows/pylint_utils.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 1646496872e..70e49fbd9f0 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Check to make sure that the module is in your Python path diff --git a/.github/workflows/pytest_kyu2.yml b/.github/workflows/pytest_kyu2.yml index 3a4f96d477a..1b358acf531 100644 --- a/.github/workflows/pytest_kyu2.yml +++ b/.github/workflows/pytest_kyu2.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytest_kyu3.yml b/.github/workflows/pytest_kyu3.yml index df59ef1cb1a..21a7084833b 100644 --- a/.github/workflows/pytest_kyu3.yml +++ b/.github/workflows/pytest_kyu3.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytest_kyu4.yml b/.github/workflows/pytest_kyu4.yml index b403ac10aea..d4899d93618 100644 --- a/.github/workflows/pytest_kyu4.yml +++ b/.github/workflows/pytest_kyu4.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytest_kyu5.yml b/.github/workflows/pytest_kyu5.yml index c46b2e403fc..e899842aeef 100644 --- a/.github/workflows/pytest_kyu5.yml +++ b/.github/workflows/pytest_kyu5.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytest_kyu6.yml b/.github/workflows/pytest_kyu6.yml index 713ef76224d..1ed1846ccfd 100644 --- a/.github/workflows/pytest_kyu6.yml +++ b/.github/workflows/pytest_kyu6.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytest_kyu7.yml b/.github/workflows/pytest_kyu7.yml index e6f33f3a6b8..7faef19826a 100644 --- a/.github/workflows/pytest_kyu7.yml +++ b/.github/workflows/pytest_kyu7.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytest_utils.yml b/.github/workflows/pytest_utils.yml index b81a541e057..0b0c400f7e5 100644 --- a/.github/workflows/pytest_utils.yml +++ b/.github/workflows/pytest_utils.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytype_kyu2.yml b/.github/workflows/pytype_kyu2.yml index 3e9c60f4911..43175ef6c73 100644 --- a/.github/workflows/pytype_kyu2.yml +++ b/.github/workflows/pytype_kyu2.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytype_kyu3.yml b/.github/workflows/pytype_kyu3.yml index 043a652cbff..c6063a5589f 100644 --- a/.github/workflows/pytype_kyu3.yml +++ b/.github/workflows/pytype_kyu3.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytype_kyu4.yml b/.github/workflows/pytype_kyu4.yml index b8c3330ca60..2da99abeeb0 100644 --- a/.github/workflows/pytype_kyu4.yml +++ b/.github/workflows/pytype_kyu4.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytype_kyu5.yml b/.github/workflows/pytype_kyu5.yml index 90071f6c272..259ad742085 100644 --- a/.github/workflows/pytype_kyu5.yml +++ b/.github/workflows/pytype_kyu5.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytype_kyu6.yml b/.github/workflows/pytype_kyu6.yml index 2a92b9fc30d..3b41ea8f2e1 100644 --- a/.github/workflows/pytype_kyu6.yml +++ b/.github/workflows/pytype_kyu6.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytype_kyu7.yml b/.github/workflows/pytype_kyu7.yml index d406a903c5f..71fb82da638 100644 --- a/.github/workflows/pytype_kyu7.yml +++ b/.github/workflows/pytype_kyu7.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/pytype_kyu8.yml b/.github/workflows/pytype_kyu8.yml index 0867a47563b..4e195567ca4 100644 --- a/.github/workflows/pytype_kyu8.yml +++ b/.github/workflows/pytype_kyu8.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up Python, # not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index b33f21db7d0..3d86c58960e 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -28,7 +28,7 @@ jobs: - uses: actions/checkout@master - uses: snyk/actions/setup@master # Source: https://github.com/actions/setup-python - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.11' check-latest: true diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index e9d7061c4af..a962ecf5c5e 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} # This is the version of the action for setting up # Python, not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} # You can test your matrix by printing the current Python version