Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 45f6120

Browse files
committedFeb 1, 2025·
feat: update github action
1 parent 573285e commit 45f6120

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed
 

‎.github/workflows/build-linux-x86_64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ jobs:
6363

6464
- name: Create SDK artifact
6565
if: github.event_name != 'pull_request'
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
# Upload artifact
6868
with:
6969
name: QCefView.linux.x86_64
7070
path: ${{github.workspace}}/out/install/QCefView
7171

7272
- name: Create Demo artifact
7373
if: github.event_name != 'pull_request'
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
# Upload artifact
7676
with:
7777
name: QCefViewTest.linux.x86_64

‎.github/workflows/build-macos-x86_64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ jobs:
7272

7373
- name: Create SDK artifact
7474
if: github.event_name != 'pull_request'
75-
uses: actions/upload-artifact@v3
75+
uses: actions/upload-artifact@v4
7676
# Upload artifact
7777
with:
7878
name: QCefView.macos.x86_64
7979
path: ${{github.workspace}}/out/install/QCefView
8080

8181
- name: Create Demo artifact
8282
if: github.event_name != 'pull_request'
83-
uses: actions/upload-artifact@v3
83+
uses: actions/upload-artifact@v4
8484
# Upload artifact
8585
with:
8686
name: QCefViewTest.macos.x86_64

‎.github/workflows/build-windows-x86_64.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ jobs:
6363

6464
- name: Create SDK artifact
6565
if: github.event_name != 'pull_request'
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
# Upload artifact
6868
with:
6969
name: QCefView.windows.x86_64
7070
path: ${{github.workspace}}/out/install/QCefView
7171

7272
- name: Create Demo artifact
7373
if: github.event_name != 'pull_request'
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
# Upload artifact
7676
with:
7777
name: QCefViewTest.windows.x86_64

‎.github/workflows/create-release.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
4848

4949
- name: Create SDK artifact
50-
uses: actions/upload-artifact@v3
50+
uses: actions/upload-artifact@v4
5151
with:
5252
name: QCefView.windows.x86_64
5353
path: ${{github.workspace}}/out/install/QCefView
5454

5555
- name: Create Demo artifact
56-
uses: actions/upload-artifact@v3
56+
uses: actions/upload-artifact@v4
5757
with:
5858
name: QCefViewTest.windows.x86_64
5959
path: ${{github.workspace}}/out/install/QCefViewTest
@@ -93,14 +93,14 @@ jobs:
9393
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
9494

9595
- name: Create SDK artifact
96-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v4
9797
# Upload artifact
9898
with:
9999
name: QCefView.macos.x86_64
100100
path: ${{github.workspace}}/out/install/QCefView
101101

102102
- name: Create Demo artifact
103-
uses: actions/upload-artifact@v3
103+
uses: actions/upload-artifact@v4
104104
# Upload artifact
105105
with:
106106
name: QCefViewTest.macos.x86_64
@@ -137,14 +137,14 @@ jobs:
137137
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
138138

139139
- name: Create SDK artifact
140-
uses: actions/upload-artifact@v3
140+
uses: actions/upload-artifact@v4
141141
# Upload artifact
142142
with:
143143
name: QCefView.linux.x86_64
144144
path: ${{github.workspace}}/out/install/QCefView
145145

146146
- name: Create Demo artifact
147-
uses: actions/upload-artifact@v3
147+
uses: actions/upload-artifact@v4
148148
# Upload artifact
149149
with:
150150
name: QCefViewTest.linux.x86_64
@@ -156,7 +156,7 @@ jobs:
156156
runs-on: ubuntu-latest
157157
steps:
158158
- name: Download all artifacts
159-
uses: actions/download-artifact@v3
159+
uses: actions/download-artifact@v4
160160
with:
161161
path: ${{github.workspace}}/artifacts
162162

0 commit comments

Comments
 (0)
Please sign in to comment.