Skip to content

Commit a9091bd

Browse files
author
SturdyFool10
committed
maybe finally fixed failing checks
1 parent 599f696 commit a9091bd

6 files changed

+6
-6
lines changed

.github/workflows/build_MacOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: cargo build --release # Run your build command
2323

2424
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: MacOs_Artifact
2828
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_MacOS_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: cargo build --release # Run your build command
2323

2424
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: MacOs_Artifact
2828
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: cargo build --release # Run your build command
2323

2424
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: Linux_Artifact
2828
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_linux_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: cargo build --release # Run your build command
2323

2424
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: Linux_Artifact
2828
path: target/release/server_host # Replace with the actual path to your compiled binary

.github/workflows/build_win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: cargo build --release # Run your build command
2323

2424
- name: Archive Artifact
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: Win_Artifact
2828
path: target/release/server_host.exe # Replace with the actual path to your compiled binary

.github/workflows/build_win_testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: cargo build --release # Run your build command
2222

2323
- name: Archive Artifact
24-
uses: actions/upload-artifact@v2
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: Win_Artifact
2727
path: target/release/server_host.exe # Replace with the actual path to your compiled binary

0 commit comments

Comments
 (0)