@@ -52,50 +52,44 @@ jobs:
52
52
# Install Qt
53
53
#
54
54
55
- - name : Cache Qt
56
- id : cache-qt
57
- uses : actions/cache@v3
58
- with :
59
- path : ../Qt
60
- key : ${{ runner.os }}-QtCache-${{ matrix.qt-version }}
61
55
# https://github.com/marketplace/actions/install-qt
62
56
- if : contains( matrix.os, 'windows') && ( matrix.qt-version == '5.7' )
63
57
name : Install Qt 5.7 on Windows
64
- uses : jurplel/install-qt-action@v2
58
+ uses : jurplel/install-qt-action@v4
65
59
with :
66
60
version : ${{ matrix.qt-version }}
67
61
arch : win32_mingw53
68
62
# try mirror
69
63
# mirror: 'http://mirrors.ocf.berkeley.edu/qt/'
70
- cached : ${{ steps.cache-qt.outputs.cache-hit }}
64
+ cache : true
71
65
aqtversion : ' ==0.9.4'
72
66
# py7zrversion: '==0.9.0'
73
67
- if : contains( matrix.os, 'windows') && ( matrix.qt-version == '5.15.2' )
74
68
name : Install Qt 5.15.2 on Windows
75
- uses : jurplel/install-qt-action@v2
69
+ uses : jurplel/install-qt-action@v4
76
70
with :
77
71
version : ${{ matrix.qt-version }}
78
72
arch : win64_mingw81
79
- cached : ${{ steps.cache-qt.outputs.cache-hit }}
73
+ cache : true
80
74
- if : contains( matrix.os, 'windows') && ( matrix.qt-version != '5.7' ) && ( matrix.qt-version != '5.15.2' )
81
75
name : Install Qt on Windows
82
- uses : jurplel/install-qt-action@v2
76
+ uses : jurplel/install-qt-action@v4
83
77
with :
84
78
version : ${{ matrix.qt-version }}
85
79
arch : win64_mingw73
86
- cached : ${{ steps.cache-qt.outputs.cache-hit }}
80
+ cache : true
87
81
- if : false == contains( matrix.os, 'windows') && !startsWith( matrix.qt-version, '6.' )
88
82
name : Install Qt
89
- uses : jurplel/install-qt-action@v2
83
+ uses : jurplel/install-qt-action@v4
90
84
with :
91
85
version : ${{ matrix.qt-version }}
92
- cached : ${{ steps.cache-qt.outputs.cache-hit }}
86
+ cache : true
93
87
- if : false == contains( matrix.os, 'windows') && startsWith( matrix.qt-version, '6.' )
94
88
name : Install Qt
95
- uses : jurplel/install-qt-action@v2
89
+ uses : jurplel/install-qt-action@v4
96
90
with :
97
91
version : ${{ matrix.qt-version }}
98
- cached : ${{ steps.cache-qt.outputs.cache-hit }}
92
+ cache : true
99
93
100
94
#
101
95
# Build qmarkdowntextedit
0 commit comments