From fa7e959b12ff71793563c1773c5715fc1dde2afe Mon Sep 17 00:00:00 2001 From: Heberto Mayorquin Date: Mon, 18 May 2026 14:42:44 -0600 Subject: [PATCH] Update actions --- .github/workflows/codespell.yml | 2 +- .github/workflows/copy_probe_features.yml | 2 +- .github/workflows/full_tests.yml | 4 ++-- .github/workflows/full_tests_codecov.yml | 6 +++--- .github/workflows/publish-to-pypi.yml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index b2316674..55fe4fce 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Annotate locations with typos uses: codespell-project/codespell-problem-matcher@v1 - name: Codespell diff --git a/.github/workflows/copy_probe_features.yml b/.github/workflows/copy_probe_features.yml index 7f812a59..5c5b32fe 100644 --- a/.github/workflows/copy_probe_features.yml +++ b/.github/workflows/copy_probe_features.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout current repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Copy file from external repo run: | diff --git a/.github/workflows/full_tests.yml b/.github/workflows/full_tests.yml index a717891c..97d3bb19 100644 --- a/.github/workflows/full_tests.yml +++ b/.github/workflows/full_tests.yml @@ -20,9 +20,9 @@ jobs: python-version: ["3.10", "3.14"] # Lower and higher versions we support os: [macos-latest, windows-latest, ubuntu-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.11" - name: Install package diff --git a/.github/workflows/full_tests_codecov.yml b/.github/workflows/full_tests_codecov.yml index 44614bd2..12daee03 100644 --- a/.github/workflows/full_tests_codecov.yml +++ b/.github/workflows/full_tests_codecov.yml @@ -12,9 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.11" - name: Install package @@ -25,7 +25,7 @@ jobs: - name: Pytest run: | pytest --cov=probeinterface --cov-report xml:./coverage.xml - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 24cb803c..c454cd2b 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.11" - name: Install Tools