diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index e992948..3276e9d 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.yml @@ -15,7 +15,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 0e85a53..64cb77e 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -15,7 +15,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 6393256..b8d28e6 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -15,7 +15,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/pytest.yml b/.github/workflows/pytest.yml index 152b8b1..efe3792 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.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 }} - name: Check to make sure that the module is in your Python path diff --git a/.github/workflows/rst_lint.yml b/.github/workflows/rst_lint.yml index 9535178..1833bde 100644 --- a/.github/workflows/rst_lint.yml +++ b/.github/workflows/rst_lint.yml @@ -18,7 +18,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: Install Dependencies diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 825a27a..e145fa2 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -25,7 +25,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/sphinx_docs.yml b/.github/workflows/sphinx_docs.yml index 33b86ed..6f358d7 100644 --- a/.github/workflows/sphinx_docs.yml +++ b/.github/workflows/sphinx_docs.yml @@ -19,7 +19,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: Install dependencies diff --git a/.github/workflows/sphinx_lint.yml b/.github/workflows/sphinx_lint.yml index 99a81fc..6f60adf 100644 --- a/.github/workflows/sphinx_lint.yml +++ b/.github/workflows/sphinx_lint.yml @@ -19,7 +19,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: Install Dependencies diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 2bdf6ac..6d3712e 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -15,7 +15,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