@@ -28,10 +28,10 @@ jobs:
2828 shell : bash
2929
3030 steps :
31- - uses : actions/checkout@v3
31+ - uses : actions/checkout@v4
3232 - name : Set up Python ${{ matrix.python-version }}
3333 id : setup-python
34- uses : actions/setup-python@v4
34+ uses : actions/setup-python@v5
3535 with :
3636 python-version : ${{ matrix.python-version }}
3737 - name : Install Poetry
4343 # Load cached environment, if it exists
4444 - name : Load cached poetry environment
4545 id : cached-poetry-dependencies
46- uses : actions/cache@v3
46+ uses : actions/cache@v4
4747 with :
4848 path : .venv
4949 key : venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
6868 source $VENV
6969 poetry run pytest --cov=gnss_lib_py/algorithms --cov=gnss_lib_py/navdata --cov=gnss_lib_py/parsers --cov=gnss_lib_py/utils --cov=gnss_lib_py/visualizations --cov-report=xml
7070 - name : Upload coverage report to code-cov
71- uses : codecov/codecov-action@v3
71+ uses : codecov/codecov-action@v4
7272 with :
7373 fail_ci_if_error : true
7474 token : ${{ secrets.CODECOV_TOKEN }} # not required for public repos
@@ -79,13 +79,13 @@ jobs:
7979 runs-on : ubuntu-latest
8080 name : Check if index.rst and README.md weren't changed together
8181 steps :
82- - uses : actions/checkout@v3
82+ - uses : actions/checkout@v4
8383 with :
8484 fetch-depth : 0
8585
8686 - name : Get changed files since last remote commit
8787 id : changed-files
88- uses : tj-actions/changed-files@v41
88+ uses : tj-actions/changed-files@v44
8989
9090 - name : Check if index.rst changed when README.md file changes
9191 if : contains(steps.changed-files.outputs.modified_files, 'README.md') && !contains(steps.changed-files.outputs.modified_files, 'docs/source/index.rst')
0 commit comments