Skip to content

Commit 5573551

Browse files
author
Julian LALU
committed
Fix CI/CD
1 parent 274a992 commit 5573551

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Invoke-WebRequest -Uri https://uploader.codecov.io/latest/windows/codecov.exe -Outfile .\target\codecov.exe
2828
# .\target\codecov.exe -f target\test\Debug\coverage.msvc.cobertura -t ${{secrets.CODECOV_TOKEN}}
2929
# - name: Upload artifacts
30-
# uses: actions/upload-artifact@v3.1.1
30+
# uses: actions/upload-artifact@v4
3131
# with:
3232
# name: coverage
3333
# path: |
@@ -52,7 +52,7 @@ jobs:
5252
Invoke-WebRequest -Uri https://uploader.codecov.io/latest/windows/codecov.exe -Outfile .\target\codecov.exe
5353
.\target\codecov.exe -f target\test\coverage.windows.clang.lcov.info -t ${{secrets.CODECOV_TOKEN}}
5454
- name: Upload artifacts
55-
uses: actions/upload-artifact@v3.1.1
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: coverage
5858
path: |
@@ -80,7 +80,7 @@ jobs:
8080
chmod +x codecov
8181
./codecov -f target/test/coverage.linux.clang.lcov.info -t ${{secrets.CODECOV_TOKEN}}
8282
- name: Upload artifacts
83-
uses: actions/upload-artifact@v3.1.1
83+
uses: actions/upload-artifact@v4
8484
with:
8585
name: coverage
8686
path: |
@@ -108,7 +108,7 @@ jobs:
108108
chmod +x codecov
109109
./codecov -f target/test/coverage.linux.gcc.lcov.info -t ${{secrets.CODECOV_TOKEN}}
110110
- name: Upload artifacts
111-
uses: actions/upload-artifact@v3.1.1
111+
uses: actions/upload-artifact@v4
112112
with:
113113
name: coverage
114114
path: |

.github/workflows/ubuntu_clang14_x86-64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
cp -R target/src/*.a release -i
3535
cp -R interface/core release/core -i
3636
- name: Upload artifacts
37-
uses: actions/upload-artifact@v3.1.1
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: Ubuntu_clang_14_x86_64
4040
path: release/**

.github/workflows/ubuntu_gcc12_x86-64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
cp -R target/src/*.a release -i
3535
cp -R interface/core release/core -i
3636
- name: Upload artifacts
37-
uses: actions/upload-artifact@v3.1.1
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: Ubuntu_gcc_12_x86_64
4040
path: release/**

.github/workflows/windows_clang_cl_2022_x86-64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
xcopy target\src\Release release\ /s /y
3434
xcopy interface\core release\core\ /s /y
3535
- name: Upload artifacts
36-
uses: actions/upload-artifact@v3.1.1
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: windows_clang_cl_2022_x64
3939
path: release\**

.github/workflows/windows_mingw_64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
cp -R target/src/*.a release
3636
cp -R interface/core release/core
3737
- name: Upload artifacts
38-
uses: actions/upload-artifact@v3.1.1
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: windows_mingw_64
4141
path: release\**

.github/workflows/windows_msvc_2022_x86-64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
xcopy target\src\Release release\ /s /y
3434
xcopy interface\core release\core\ /s /y
3535
- name: Upload artifacts
36-
uses: actions/upload-artifact@v3.1.1
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: windows_msvc_2022_x64
3939
path: release\**

.github/workflows/windows_wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
xcopy target\src\libcore.a release\ /s /y
3838
xcopy interface\core release\core\ /s /y
3939
- name: Upload artifacts
40-
uses: actions/upload-artifact@v3.1.1
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: windows_webassembly
4343
path: release\**

0 commit comments

Comments
 (0)