aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorJ08nY2025-10-02 19:45:32 +0200
committerJ08nY2025-10-02 19:45:32 +0200
commitcfef5c9aa4f727027731fac56b384e7e46ae078b (patch)
tree2afff1f74616d8bfd9f711d2246fd79abc9de25c /.github/workflows
parent93eb729ca6667ad253980b572be62a1bb0498b68 (diff)
downloadpyecsca-codegen-cfef5c9aa4f727027731fac56b384e7e46ae078b.tar.gz
pyecsca-codegen-cfef5c9aa4f727027731fac56b384e7e46ae078b.tar.zst
pyecsca-codegen-cfef5c9aa4f727027731fac56b384e7e46ae078b.zip
Bump actions and fix codecov.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f9325ca..7285b84 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -15,10 +15,10 @@ jobs:
env:
PYTHON: ${{ matrix.python-version }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v5
with:
submodules: true
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ~/.cache/pip
key: pip-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
@@ -26,7 +26,7 @@ jobs:
pip-${{ runner.os }}-${{ matrix.python-version }}-
pip-${{ runner.os }}-
- name: Setup Python ${{ matrix.python-version }}
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
@@ -52,5 +52,7 @@ jobs:
run: |
cd test && make test && cd ..
- name: Code coverage
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v5
if: ${{ matrix.python-version == 3.9 }}
+ with:
+ token: ${{ secrets.CODECOV_TOKEN }}