Skip to content

Commit aaba9d0

Browse files
authored
71 update CI actions (#72)
1 parent 3d69634 commit aaba9d0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
run: |
2424
tar -czf build.tar.gz build
2525
- name: Upload build dir archive
26-
uses: actions/upload-artifact@v3
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: build-cpp-linux-gmgpolar
2929
path: build.tar.gz

.github/actions/test/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
sudo apt-get -qq -y install lcov
1616
sudo apt-get -qq update
1717
- name: Download build test directory
18-
uses: actions/download-artifact@v3
18+
uses: actions/download-artifact@v4
1919
with:
2020
name: ${{ inputs.build-artifact }}
2121
- name: extract build archive
@@ -37,14 +37,14 @@ runs:
3737
cd build
3838
cmake --build . --target coverage/fast
3939
- name: Upload test report
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: test-report
4343
path: build/tests/testreport.xml
4444
if-no-files-found: error
4545
retention-days: 3
4646
- name: Upload coverage reports
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: test-coverage-reports
5050
path: |

0 commit comments

Comments
 (0)