Skip to content

Commit bc6a459

Browse files
committed
Update github actions.
1 parent 88d9e90 commit bc6a459

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: .github/workflows/macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
xcodebuild -project _Build_/Xcode/Einstein.xcodeproj -scheme Einstein -archivePath Einstein.xcarchive archive
3232
mkdir -p artifacts
3333
tar czf artifacts/Einstein.app.tgz -C Einstein.xcarchive/Products/Applications/ Einstein.app
34-
- uses: actions/upload-artifact@v2
34+
- uses: actions/upload-artifact@v4
3535
with:
3636
name: Einstein.app
3737
path: artifacts/Einstein.app.tgz

Diff for: .github/workflows/rex.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
cmake --build Einstein/Drivers/build
5454
cmake --install Einstein/Drivers/build
5555
- name: Store the REx
56-
uses: actions/upload-artifact@v2
56+
uses: actions/upload-artifact@v4
5757
with:
5858
name: Einstein.rex
5959
path: Einstein/_Data_/Einstein.rex

Diff for: CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -485,12 +485,12 @@ if(CLANG_FORMAT_EXECUTABLE)
485485
set(CLANG_FORMAT_FOUND TRUE)
486486
message(STATUS "Found clang-format at ${CLANG_FORMAT_EXECUTABLE}")
487487
else()
488-
message(STATUS "clang-format not usable, as version of ${CLANG_FORMAT_EXECUTABLE} doesn't match : ${CLANG_FORMAT_VERSION_MAJOR} < 13")
488+
message(WARNING "clang-format not usable, as version of ${CLANG_FORMAT_EXECUTABLE} doesn't match : ${CLANG_FORMAT_VERSION_MAJOR} < 13")
489489
set(CLANG_FORMAT_FOUND FALSE)
490490
endif()
491491
else()
492492
set(CLANG_FORMAT_FOUND FALSE)
493-
message(STATUS "clang-format not found")
493+
message(WARNING "clang-format not found")
494494
endif()
495495

496496
if(CLANG_FORMAT_FOUND)

0 commit comments

Comments
 (0)