File tree Expand file tree Collapse file tree 2 files changed +8
-12
lines changed
Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 3333
3434 steps :
3535 - name : Checkout code
36- uses : actions/checkout@v3
36+ uses : actions/checkout@v4
3737 with :
38+ fetch-depth : 2 # necessary for codecov bash uploader
3839 submodules : ' recursive'
3940
4041 - name : Setup Clang
@@ -44,14 +45,14 @@ jobs:
4445 - name : Setup Emscripten cache
4546 if : matrix.platform.compiler == 'em++'
4647 id : cache-system-libraries
47- uses : actions/cache@v3.3.1
48+ uses : actions/cache@v4
4849 with :
4950 path : ${{env.EM_CACHE_FOLDER}}
5051 key : ${{env.EM_VERSION}}-${{matrix.platform.name}}-${{matrix.build-type}}
5152
5253 - name : Setup Emscripten
5354 if : matrix.platform.compiler == 'em++'
54- uses : mymindstorm/setup-emsdk@v12
55+ uses : mymindstorm/setup-emsdk@v14
5556 with :
5657 version : ${{env.EM_VERSION}}
5758 actions-cache-folder : ${{env.EM_CACHE_FOLDER}}
Original file line number Diff line number Diff line change 1212
1313 steps :
1414 - name : Checkout code
15- uses : actions/checkout@v2
15+ uses : actions/checkout@v4
1616
1717 - name : Get dependencies
1818 run : sudo apt-get install doxygen
2222 shell : bash
2323 run : doxygen dox.conf
2424
25- - name : Compress
26- working-directory : ${{github.workspace}}/doc
27- shell : bash
28- run : zip docs.zip html/*
29-
3025 - name : Upload as an Artifact
31- uses : actions/upload-artifact@v2
26+ uses : actions/upload-artifact@v4
3227 with :
33- name : docs.zip
34- path : ${{github.workspace}}/doc/docs.zip
28+ name : docs
29+ path : ${{github.workspace}}/doc/html
You can’t perform that action at this time.
0 commit comments