Skip to content

Commit 01f3929

Browse files
committed
CI: update version
1 parent 46318d1 commit 01f3929

15 files changed

Lines changed: 50 additions & 50 deletions

.github/workflows/android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
steps:
7474
- name: Checkout Repository
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v6
7676
with:
7777
submodules: recursive
7878
fetch-depth: 0
@@ -92,7 +92,7 @@ jobs:
9292
sudo apt install -y -q ninja-build nasm
9393
9494
- name: Cache installed
95-
uses: actions/cache@v4
95+
uses: actions/cache@v5
9696
id: cache-installed
9797
with:
9898
path: |
@@ -523,7 +523,7 @@ jobs:
523523
524524
- name: Update artifact
525525
if: ${{ matrix.BUILD_TYPE == 'Release' }}
526-
uses: actions/upload-artifact@v4
526+
uses: actions/upload-artifact@v7
527527
with:
528528
name: ${{ env.artifact_name }}_${{matrix.qt_version}}_${{matrix.qt_arch}}
529529
path: |

.github/workflows/appimage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Checkout Repository
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v6
4545
with:
4646
submodules: recursive
4747
fetch-depth: 0
@@ -54,7 +54,7 @@ jobs:
5454
cmake -E make_directory ${{env.INSTALL_DIR}}
5555
5656
- name: Cache installed
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
id: cache-installed
5959
with:
6060
path: |
@@ -93,7 +93,7 @@ jobs:
9393
9494
- name: Update artifact
9595
if: ${{ matrix.BUILD_TYPE == 'Release' }}
96-
uses: actions/upload-artifact@v4
96+
uses: actions/upload-artifact@v7
9797
with:
9898
name: ${{ env.artifact_name }}_${{matrix.os}}
9999
path: |

.github/workflows/build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
needs: [linux, docker, flatpak, msvc, doxygen, android, macos]
7777
steps:
7878
- name: Checkout Repository
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v6
8080
with:
8181
submodules: false
8282
fetch-depth: 1
@@ -88,81 +88,81 @@ jobs:
8888
gh release delete test_${{ github.ref_name }} -y --cleanup-tag
8989
9090
- name: Download ubuntu
91-
uses: actions/download-artifact@v4
91+
uses: actions/download-artifact@v7
9292
if: false
9393
with:
9494
pattern: ${{ needs.ubuntu.outputs.name }}*
9595
path: ${{ env.artifact_path }}
9696
merge-multiple: true
9797

9898
- name: Download appimage
99-
uses: actions/download-artifact@v4
99+
uses: actions/download-artifact@v7
100100
if: false
101101
with:
102102
pattern: ${{ needs.appimage.outputs.name }}*
103103
path: ${{ env.artifact_path }}
104104
merge-multiple: true
105105

106106
- name: Download linux
107-
uses: actions/download-artifact@v4
107+
uses: actions/download-artifact@v7
108108
with:
109109
pattern: ${{ needs.linux.outputs.name }}*
110110
path: ${{ env.artifact_path }}
111111
merge-multiple: true
112112

113113
- name: Download docker
114-
uses: actions/download-artifact@v4
114+
uses: actions/download-artifact@v7
115115
with:
116116
pattern: ${{ needs.docker.outputs.name }}*
117117
path: ${{ env.artifact_path }}
118118
merge-multiple: true
119119

120120
- name: Download flatpak
121-
uses: actions/download-artifact@v4
121+
uses: actions/download-artifact@v7
122122
with:
123123
pattern: RabbitRemoteControl_*.flatpak
124124
path: ${{ env.artifact_path }}
125125
merge-multiple: true
126126

127127
- name: Download snap
128-
uses: actions/download-artifact@v4
128+
uses: actions/download-artifact@v7
129129
if: false
130130
with:
131131
pattern: ${{ needs.snap.outputs.name }}*
132132
path: ${{ env.artifact_path }}
133133
merge-multiple: true
134134

135135
- name: Download msvc
136-
uses: actions/download-artifact@v4
136+
uses: actions/download-artifact@v7
137137
with:
138138
pattern: ${{ needs.msvc.outputs.name }}*
139139
path: ${{ env.artifact_path }}
140140
merge-multiple: true
141141

142142
- name: Download mingw
143143
if: false
144-
uses: actions/download-artifact@v4
144+
uses: actions/download-artifact@v7
145145
with:
146146
name: ${{ needs.mingw.outputs.name }}
147147
path: ${{ env.artifact_path }}
148148
merge-multiple: true
149149

150150
- name: Download macos
151-
uses: actions/download-artifact@v4
151+
uses: actions/download-artifact@v7
152152
with:
153153
pattern: ${{ needs.macos.outputs.name }}*
154154
path: ${{ env.artifact_path }}
155155
merge-multiple: true
156156

157157
- name: Download android
158-
uses: actions/download-artifact@v4
158+
uses: actions/download-artifact@v7
159159
with:
160160
pattern: ${{ needs.android.outputs.name }}*
161161
path: ${{ env.artifact_path }}
162162
merge-multiple: true
163163

164164
- name: Download doxygen
165-
uses: actions/download-artifact@v4
165+
uses: actions/download-artifact@v7
166166
with:
167167
name: ${{ needs.doxygen.outputs.name }}
168168
path: ${{ env.artifact_path }}
@@ -327,7 +327,7 @@ jobs:
327327
328328
- name: Update artifact
329329
if: false
330-
uses: actions/upload-artifact@v4
330+
uses: actions/upload-artifact@v7
331331
with:
332332
name: Release.md
333333
path: |

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v6
1414

1515
- uses: codespell-project/actions-codespell@master
1616
with:

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123

124124
steps:
125125
- name: Checkout Repository
126-
uses: actions/checkout@v4
126+
uses: actions/checkout@v6
127127
with:
128128
submodules: true
129129
fetch-depth: 0
@@ -136,7 +136,7 @@ jobs:
136136
cmake -E make_directory ${{env.INSTALL_DIR}}
137137
138138
- name: Cache installed
139-
uses: actions/cache@v4
139+
uses: actions/cache@v5
140140
id: cache-installed
141141
with:
142142
path: |
@@ -213,7 +213,7 @@ jobs:
213213
214214
- name: Update artifact
215215
#if: ${{matrix.variant.PACKAGE != 'deb'}}
216-
uses: actions/upload-artifact@v4
216+
uses: actions/upload-artifact@v7
217217
with:
218218
name: ${{ env.artifact_name }}_${{matrix.variant.PACKAGE}}_${{matrix.variant.image}}_${{matrix.variant.lable}}_${{matrix.variant.os}}
219219
path: |

.github/workflows/doxygen.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
name: ${{ env.artifact_name }}
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v6
3333
with:
34-
submodules: true
34+
submodules: recursive
3535

3636
- name: make_directory
3737
run: |
@@ -42,7 +42,7 @@ jobs:
4242
4343
- name: Cache installed
4444
if: false
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
id: cache-installed
4747
with:
4848
path: |
@@ -89,7 +89,7 @@ jobs:
8989
7z a RabbitRemoteControl_${{env.RabbitRemoteControl_VERSION}}_document.zip Doxygen/*
9090
9191
- name: Update artifact
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: ${{ env.artifact_name }}
9595
path: |

.github/workflows/flatpak.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout Repository
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141
with:
4242
submodules: recursive
4343
fetch-depth: 0

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Checkout Repository
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v6
5151
with:
5252
submodules: recursive
5353
fetch-depth: 0
@@ -60,7 +60,7 @@ jobs:
6060
cmake -E make_directory ${{env.INSTALL_DIR}}
6161
6262
- name: Cache installed
63-
uses: actions/cache@v4
63+
uses: actions/cache@v5
6464
id: cache-installed
6565
with:
6666
path: |
@@ -147,7 +147,7 @@ jobs:
147147
148148
- name: Update artifact
149149
if: ${{ matrix.BUILD_TYPE == 'Release' }}
150-
uses: actions/upload-artifact@v4
150+
uses: actions/upload-artifact@v7
151151
with:
152152
name: ${{ env.artifact_name }}_${{matrix.os}}_${{matrix.PACKAGE}}
153153
path: |

.github/workflows/macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
steps:
6767
- name: Checkout Repository
68-
uses: actions/checkout@v3
68+
uses: actions/checkout@v6
6969
with:
7070
submodules: true
7171
fetch-depth: 0
@@ -78,7 +78,7 @@ jobs:
7878
cmake -E make_directory ${{env.INSTALL_DIR}}
7979
8080
- name: Cache installed
81-
uses: actions/cache@v4
81+
uses: actions/cache@v5
8282
id: cache-installed
8383
with:
8484
path: |
@@ -423,7 +423,7 @@ jobs:
423423
-u "https://github.com/KangLin/RabbitRemoteControl/releases/download/v${{env.RabbitRemoteControl_VERSION}}/RabbitRemoteControl_${{env.RabbitRemoteControl_VERSION}}_${{matrix.os}}.zip;https://master.dl.sourceforge.net/project/rabbitremotecontrol/v${{env.RabbitRemoteControl_VERSION}}/RabbitRemoteControl_${{env.RabbitRemoteControl_VERSION}}_${{matrix.os}}.zip?viasf=1"
424424
425425
- name: Update artifact
426-
uses: actions/upload-artifact@v4
426+
uses: actions/upload-artifact@v7
427427
with:
428428
name: ${{ env.artifact_name }}_${{matrix.qt_version}}_${{matrix.qt_arch}}_${{matrix.os}}_${{matrix.WITH_MACOSX_BUNDLE}}
429429
path: |

.github/workflows/macos_script.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
steps:
5656
- name: Checkout Repository
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v6
5858
with:
5959
submodules: true
6060
fetch-depth: 0
@@ -67,7 +67,7 @@ jobs:
6767
cmake -E make_directory ${{env.INSTALL_DIR}}
6868
6969
- name: Cache installed
70-
uses: actions/cache@v4
70+
uses: actions/cache@v5
7171
id: cache-installed
7272
with:
7373
path: |
@@ -129,7 +129,7 @@ jobs:
129129
fi
130130
131131
- name: Update artifact
132-
uses: actions/upload-artifact@v4
132+
uses: actions/upload-artifact@v7
133133
with:
134134
name: ${{ env.artifact_name }}_${{matrix.os}}
135135
path: |

0 commit comments

Comments
 (0)