diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml index ae5a2e7..619f278 100644 --- a/.github/workflows/flake8.yml +++ b/.github/workflows/flake8.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 diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 4509ac8..3ab9f13 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 210012e..1aaac27 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v5 - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml index acadfde..72b3d1f 100644 --- a/.github/workflows/ruff.yml +++ b/.github/workflows/ruff.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Set up Python 3.12 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' - name: Install Ruff