@@ -34,18 +34,18 @@ jobs:
3434
3535 steps :
3636 - name : Check Out VCS Repository
37- 37+ 3838
3939 - name : Set Up Python ${{ matrix.python_version }}
40- uses : actions/setup-python@v5.2 .0
40+ uses : actions/setup-python@v5.3 .0
4141 with :
4242 python-version : " ${{ matrix.python_version }}"
4343
4444 - name : Create Python Virtual Environment
4545 run : make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"
4646
4747 - name : Restoring/Saving Cache
48- uses : actions/cache@v4.0 .2
48+ uses : actions/cache@v4.1 .2
4949 with :
5050 path : " venv"
5151 key : py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -75,15 +75,15 @@ jobs:
7575
7676 steps :
7777 - name : Check Out VCS Repository
78- 78+ 7979
8080 - name : Set Up Python ${{ matrix.python_version }}
81- uses : actions/setup-python@v5.2 .0
81+ uses : actions/setup-python@v5.3 .0
8282 with :
8383 python-version : " ${{ matrix.python_version }}"
8484
8585 - name : Restoring/Saving Cache
86- uses : actions/cache@v4.0 .2
86+ uses : actions/cache@v4.1 .2
8787 with :
8888 path : " venv"
8989 key : py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
@@ -122,7 +122,7 @@ jobs:
122122 make test-coverage-report
123123
124124 - name : Upload coverage reports to Codecov
125- uses : codecov/codecov-action@v4.5.0
125+ uses : codecov/codecov-action@v5.0.7
126126 with :
127127 token : ${{ secrets.CODECOV_TOKEN }}
128128 directory : ./test-reports/coverage/
@@ -137,7 +137,7 @@ jobs:
137137
138138 - name : Store Artifacts
139139 if : ${{ always() }}
140- 140+ 141141 with :
142142 name : test_reports_${{ matrix.python_version }}
143143 path : test-reports/
0 commit comments