File tree Expand file tree Collapse file tree
src-tauri/blades/wherespace Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 matrix :
1414 os : [ubuntu-latest, windows-latest, macos-latest]
1515 steps :
16- - uses : actions/checkout@v4
16+ - uses : actions/checkout@v6
17+
18+ - name : select xcode
19+ if : runner.os == 'macOS'
20+ run : sudo xcode-select -s /Applications/Xcode.app
1721
1822 - name : build and run tests
1923 run : |
@@ -29,12 +33,12 @@ jobs:
2933 matrix :
3034 os : [ubuntu-latest, windows-latest, macos-latest]
3135 steps :
32- - uses : actions/checkout@v4
36+ - uses : actions/checkout@v6
3337 - uses : dtolnay/rust-toolchain@stable
3438 - uses : oven-sh/setup-bun@v2
3539
3640 - name : cache rust
37- uses : actions/cache@v4
41+ uses : actions/cache@v5
3842 with :
3943 path : |
4044 ~/.cargo/registry
4448 restore-keys : ${{ runner.os }}-cargo-
4549
4650 - name : cache bun
47- uses : actions/cache@v4
51+ uses : actions/cache@v5
4852 with :
4953 path : habaki/node_modules
5054 key : ${{ runner.os }}-bun-${{ hashFiles('habaki/bun.lock') }}
6569 TAURI_SIGNING_PRIVATE_KEY : " "
6670
6771 - name : upload artifacts
68- uses : actions/upload-artifact@v4
72+ uses : actions/upload-artifact@v7
6973 with :
7074 name : kashira-${{ runner.os }}
7175 path : |
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ jobs:
1111 matrix :
1212 os : [ubuntu-latest, windows-latest, macos-latest]
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v6
1515 - uses : dtolnay/rust-toolchain@stable
1616 - uses : oven-sh/setup-bun@v2
1717
1818 - name : cache rust
19- uses : actions/cache@v4
19+ uses : actions/cache@v5
2020 with :
2121 path : |
2222 ~/.cargo/registry
3939 TAURI_SIGNING_PRIVATE_KEY : " "
4040
4141 - name : upload artifacts
42- uses : actions/upload-artifact@v4
42+ uses : actions/upload-artifact@v7
4343 with :
4444 name : kashira-${{ runner.os }}
4545 path : |
5555 permissions :
5656 contents : write
5757 steps :
58- - uses : actions/download-artifact@v4
58+ - uses : actions/download-artifact@v8
5959 with :
6060 merge-multiple : true
6161
Original file line number Diff line number Diff line change @@ -3,10 +3,6 @@ project(kashira-tests)
33
44set (CMAKE_CXX_STANDARD 17)
55
6- if (APPLE )
7- set (CMAKE_OSX_DEPLOYMENT_TARGET "15.0" )
8- endif ()
9-
106include (FetchContent )
117FetchContent_Declare (
128 Catch2
You can’t perform that action at this time.
0 commit comments