File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed
Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1010
1111 steps :
1212 - name : Checkout code
13- uses : actions/checkout@v3
13+ uses : actions/checkout@v4
1414
1515 - name : Set up QEMU
1616 uses : docker/setup-qemu-action@v2
2727 password : ${{ secrets.DOCKER_PASSWORD }}
2828
2929 - name : Build and push Docker image
30- uses : docker/build-push-action@v3
30+ uses : docker/build-push-action@v4
3131 with :
3232 context : .
3333 file : ./Docker/solver/dockerfile
Original file line number Diff line number Diff line change 77 documentation :
88 runs-on : ubuntu-latest
99 steps :
10- - uses : actions/checkout@v3
10+ - uses : actions/checkout@v4
1111 - name : Build doxygen documentation
1212 run : |
1313 sudo apt install -y doxygen
1414 doxygen Documentation/Doxyfile
1515 - name : Save documentation
16- uses : actions/upload-artifact@v3
16+ uses : actions/upload-artifact@v4
1717 with :
1818 name : documentation
1919 path : Documentation/build/html
2020 - name : Deploy documentation
2121 if : github.ref == 'refs/heads/main'
22- uses : peaceiris/actions-gh-pages@v3
22+ uses : peaceiris/actions-gh-pages@v4
2323 with :
2424 github_token : ${{ secrets.GITHUB_TOKEN }}
2525 publish_dir : Documentation/build/html
Original file line number Diff line number Diff line change 44 test :
55 runs-on : macos-latest
66 steps :
7- - uses : actions/checkout@v3
7+ - uses : actions/checkout@v4
88 - name : Install MacOS dependencies
99 run : |
1010 brew reinstall -v gcc
Original file line number Diff line number Diff line change 1515 runs-on : ${{ matrix.version }}
1616 container : simvascular/libraries:${{ matrix.image }}
1717 steps :
18- - uses : actions/checkout@v3
18+ - uses : actions/checkout@v4
1919 - name : Build svZeroDSolver
2020 shell : bash
2121 run : |
@@ -59,16 +59,19 @@ jobs:
5959 cd build/svMultiPhysics-build/Source/solver
6060 ctest --verbose
6161 - name : Generate code coverage
62+ if : ${{ matrix.version == 'ubuntu-22.04' }}
6263 run : |
6364 cd build/svMultiPhysics-build
6465 make coverage
6566 - name : Save coverage report
66- uses : actions/upload-artifact@v3
67+ if : ${{ matrix.version == 'ubuntu-22.04' }}
68+ uses : actions/upload-artifact@v4
6769 with :
6870 name : coverage_report
6971 path : build/svMultiPhysics-build/coverage
7072 - name : Upload coverage reports to Codecov
71- uses : codecov/codecov-action@v3
73+ if : ${{ matrix.version == 'ubuntu-22.04' }}
74+ uses : codecov/codecov-action@v5
7275 env :
7376 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
7477
You can’t perform that action at this time.
0 commit comments