Skip to content

Commit a493883

Browse files
committed
Update CI versions
1 parent ab2ad1d commit a493883

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
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}}

.github/workflows/doc.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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
@@ -22,13 +22,8 @@ jobs:
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

0 commit comments

Comments
 (0)