@@ -14,18 +14,18 @@ jobs:
1414 os : [ubuntu-latest]
1515
1616 steps :
17- - uses : actions/checkout@v4
17+ - uses : actions/checkout@v6
1818
1919 - name : Create Build Environment
20- run : cmake -E make_directory ${{runner .workspace}}/build
20+ run : cmake -E make_directory ${{github .workspace}}/build
2121
2222 - name : Configure CMake
2323 shell : bash
24- working-directory : ${{runner .workspace}}/build
24+ working-directory : ${{github .workspace}}/build
2525 run : cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -DFAST_BUILD=OFF
2626
2727 - name : Build
28- working-directory : ${{runner .workspace}}/build
28+ working-directory : ${{github .workspace}}/build
2929 shell : bash
3030 # Execute the build. You can specify a specific target with "--target <NAME>"
3131 run : |
3434 cmake --build . --parallel --config Debug
3535
3636 - name : Test
37- working-directory : ${{runner .workspace}}/build
37+ working-directory : ${{github .workspace}}/build
3838 shell : bash
3939 # Execute tests defined by the CMake configuration.
4040 # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
@@ -47,18 +47,18 @@ jobs:
4747 os : [ubuntu-latest]
4848
4949 steps :
50- - uses : actions/checkout@v4
50+ - uses : actions/checkout@v6
5151
5252 - name : Create Build Environment
53- run : cmake -E make_directory ${{runner .workspace}}/build
53+ run : cmake -E make_directory ${{github .workspace}}/build
5454
5555 - name : Configure CMake
5656 shell : bash
57- working-directory : ${{runner .workspace}}/build
57+ working-directory : ${{github .workspace}}/build
5858 run : cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=RELEASE
5959
6060 - name : Build
61- working-directory : ${{runner .workspace}}/build
61+ working-directory : ${{github .workspace}}/build
6262 shell : bash
6363 # Execute the build. You can specify a specific target with "--target <NAME>"
6464 run : |
6767 cmake --build . --parallel --config RELEASE
6868
6969 - name : Test
70- working-directory : ${{runner .workspace}}/build
70+ working-directory : ${{github .workspace}}/build
7171 shell : bash
7272 # Execute tests defined by the CMake configuration.
7373 # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
@@ -80,18 +80,18 @@ jobs:
8080 os : [ubuntu-latest]
8181
8282 steps :
83- - uses : actions/checkout@v4
83+ - uses : actions/checkout@v6
8484
8585 - name : Create Build Environment
86- run : cmake -E make_directory ${{runner .workspace}}/build
86+ run : cmake -E make_directory ${{github .workspace}}/build
8787
8888 - name : Configure CMake
8989 shell : bash
90- working-directory : ${{runner .workspace}}/build
90+ working-directory : ${{github .workspace}}/build
9191 run : cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=Debug -DFAST_BUILD=OFF -DHIGHSINT64=on
9292
9393 - name : Build
94- working-directory : ${{runner .workspace}}/build
94+ working-directory : ${{github .workspace}}/build
9595 shell : bash
9696 # Execute the build. You can specify a specific target with "--target <NAME>"
9797 run : |
@@ -100,7 +100,7 @@ jobs:
100100 cmake --build . --parallel --config Debug
101101
102102 - name : Test
103- working-directory : ${{runner .workspace}}/build
103+ working-directory : ${{github .workspace}}/build
104104 shell : bash
105105 # Execute tests defined by the CMake configuration.
106106 # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
@@ -113,18 +113,18 @@ jobs:
113113 os : [ubuntu-latest]
114114
115115 steps :
116- - uses : actions/checkout@v4
116+ - uses : actions/checkout@v6
117117
118118 - name : Create Build Environment
119- run : cmake -E make_directory ${{runner .workspace}}/build
119+ run : cmake -E make_directory ${{github .workspace}}/build
120120
121121 - name : Configure CMake
122122 shell : bash
123- working-directory : ${{runner .workspace}}/build
123+ working-directory : ${{github .workspace}}/build
124124 run : cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=RELEASE -DHIGHSINT64=on
125125
126126 - name : Build
127- working-directory : ${{runner .workspace}}/build
127+ working-directory : ${{github .workspace}}/build
128128 shell : bash
129129 # Execute the build. You can specify a specific target with "--target <NAME>"
130130 run : |
@@ -133,7 +133,7 @@ jobs:
133133 cmake --build . --parallel --config RELEASE
134134
135135 - name : Test
136- working-directory : ${{runner .workspace}}/build
136+ working-directory : ${{github .workspace}}/build
137137 shell : bash
138138 # Execute tests defined by the CMake configuration.
139139 # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
0 commit comments