File tree Expand file tree Collapse file tree 8 files changed +18
-19
lines changed Expand file tree Collapse file tree 8 files changed +18
-19
lines changed Original file line number Diff line number Diff line change 32
32
fail-fast : false
33
33
34
34
steps :
35
- - uses : actions/checkout@v2
35
+ - uses : actions/checkout@v4
36
36
with :
37
37
persist-credentials : false # do not persist auth token in the local git config
38
38
path : main
58
58
cp $(find . -name compat_report.html) .
59
59
cp $(find . -name new-abi.dump) .
60
60
61
- - uses : actions/upload-artifact@v2
61
+ - uses : actions/upload-artifact@v4
62
62
if : always()
63
63
with :
64
64
name : abi_info
Original file line number Diff line number Diff line change 22
22
runs-on : ubuntu-20.04
23
23
timeout-minutes : 38
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
26
with :
27
27
persist-credentials : false # do not persist auth token in the local git config
28
28
path : main
45
45
run : |
46
46
cd main
47
47
cd build
48
- ctest -C Debug --output-on-failure -V
48
+ ctest -C Debug --output-on-failure
49
49
Original file line number Diff line number Diff line change 38
38
qt : OFF
39
39
40
40
steps :
41
- - uses : actions/checkout@v3
41
+ - uses : actions/checkout@v4
42
42
with :
43
43
persist-credentials : false # do not persist auth token in the local git config
44
44
path : main
Original file line number Diff line number Diff line change 60
60
exitevents : OFF
61
61
62
62
steps :
63
- - uses : actions/checkout@v3
63
+ - uses : actions/checkout@v4
64
64
with :
65
65
persist-credentials : false # do not persist auth token in the local git config
66
66
path : main
95
95
run : |
96
96
cd main
97
97
cd build
98
- ctest -C Debug --output-on-failure -V
98
+ ctest -C Debug --output-on-failure
Original file line number Diff line number Diff line change 32
32
os : windows-2022
33
33
34
34
steps :
35
- - uses : actions/checkout@v3
35
+ - uses : actions/checkout@v4
36
36
with :
37
37
persist-credentials : false # do not persist auth token in the local git config
38
38
path : main
46
46
47
47
- name : ' Checkout VCPKG'
48
48
if : steps.restore-vcpkg-cache.outputs.cache-hit != 'true'
49
- uses : actions/checkout@v3
49
+ uses : actions/checkout@v4
50
50
with :
51
51
repository : microsoft/vcpkg
52
52
path : vcpkg
83
83
run : |
84
84
cd main
85
85
cd build
86
- ctest -C Debug --output-on-failure -V
86
+ ctest -C Debug --output-on-failure
87
87
88
88
Original file line number Diff line number Diff line change @@ -32,21 +32,21 @@ jobs:
32
32
os : windows-2022
33
33
34
34
steps :
35
- - uses : actions/checkout@v3
35
+ - uses : actions/checkout@v4
36
36
with :
37
37
persist-credentials : false # do not persist auth token in the local git config
38
38
path : main
39
39
40
40
- name : ' Restore Prebuilt Dependencies'
41
41
id : restore-vcpkg-cache
42
- uses : actions/cache@v3
42
+ uses : actions/cache@v4
43
43
with :
44
44
path : vcpkg
45
45
key : ${{ runner.os }}-${{ matrix.name }}-cache-x64
46
46
47
47
- name : ' Checkout VCPKG'
48
48
if : steps.restore-vcpkg-cache.outputs.cache-hit != 'true'
49
- uses : actions/checkout@v3
49
+ uses : actions/checkout@v4
50
50
with :
51
51
repository : microsoft/vcpkg
52
52
path : vcpkg
83
83
run : |
84
84
cd main
85
85
cd build
86
- ctest -C Debug --output-on-failure -V
87
-
86
+ ctest -C Debug --output-on-failure
Original file line number Diff line number Diff line change 31
31
fail-fast : false
32
32
33
33
steps :
34
- - uses : actions/checkout@v2
34
+ - uses : actions/checkout@v4
35
35
with :
36
36
persist-credentials : false # do not persist auth token in the local git config
37
37
path : clean-checkout
60
60
sha512sum "apache-log4cxx-$VERSION.zip" > "apache-log4cxx-$VERSION.zip.sha512"
61
61
sha256sum "apache-log4cxx-$VERSION.zip" > "apache-log4cxx-$VERSION.zip.sha256"
62
62
63
- - uses : actions/upload-artifact@v2
63
+ - uses : actions/upload-artifact@v4
64
64
if : always()
65
65
with :
66
66
name : ' Upload release files'
Original file line number Diff line number Diff line change 32
32
SONAR_SERVER_URL : " https://sonarcloud.io"
33
33
BUILD_WRAPPER_OUT_DIR : build_wrapper_output_directory # Directory where build-wrapper output will be placed
34
34
steps :
35
- - uses : actions/checkout@v2
35
+ - uses : actions/checkout@v4
36
36
with :
37
37
persist-credentials : false # do not persist auth token in the local git config
38
38
fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
44
44
java-version : 17
45
45
46
46
- name : Set up Python 3.8 for gcovr
47
- uses : actions/setup-python@v2
47
+ uses : actions/setup-python@v5
48
48
with :
49
49
python-version : 3.8
50
50
You can’t perform that action at this time.
0 commit comments