Skip to content

Commit deeb9b8

Browse files
authored
Merge pull request #6983 from BOINC/vko_update_action
[ci] update actions
2 parents 40b9dc0 + 47ae5bb commit deeb9b8

16 files changed

Lines changed: 49 additions & 49 deletions

.github/workflows/all_projects_list_xml_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "PR_REQUIRED=$?" >> $GITHUB_ENV
4646
- name: Create PR
4747
if: ${{ success() && env.PR_REQUIRED == 1 }}
48-
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0
48+
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1
4949
with:
5050
commit-message: Update all_projects_list.xml
5151
title: Update all_projects_list.xml

.github/workflows/android.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ jobs:
8484

8585
- name: Upload logs on failure
8686
if: ${{ failure() }}
87-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
87+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
8888
with:
8989
name: android_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
9090
path: deploy/logs.7z
9191

9292
- name: Upload client on success
9393
if: ${{ success() }}
94-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
94+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
9595
with:
9696
name: android_client_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
9797
path: android/BOINC/app/src/main/assets/
@@ -157,27 +157,27 @@ jobs:
157157

158158
- name: Upload logs on failure
159159
if: ${{ failure() }}
160-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
160+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
161161
with:
162162
name: android_logs_manager_${{ github.event.pull_request.head.sha }}
163163
path: deploy/logs.7z
164164

165165
- name: Upload generic artifacts
166-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
166+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
167167
if: ${{ matrix.task == 'assembleRelease' }}
168168
with:
169169
name: android_manager_${{ github.event.pull_request.head.sha }}
170170
path: android/BOINC/app/build/outputs/apk/release/app-release-unsigned.apk
171171

172172
- name: Upload armv6 only manager
173-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
173+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
174174
if: ${{ matrix.task == 'assembleArmv6_release' }}
175175
with:
176176
name: android_armv6_manager_${{ github.event.pull_request.head.sha }}
177177
path: android/BOINC/app/build/outputs/apk/armv6_release/app-armv6_release-unsigned.apk
178178

179179
- name: Upload JUnit Tests Results
180-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
180+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
181181
if: ${{ always() && matrix.task == 'jacocoTestReportDebug' }}
182182
with:
183183
name: Android_tests_results
@@ -246,7 +246,7 @@ jobs:
246246

247247
- name: Upload logs on failure
248248
if: ${{ failure() }}
249-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
249+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
250250
with:
251251
name: android_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
252252
path: deploy/logs.7z
@@ -256,7 +256,7 @@ jobs:
256256
run: python ./deploy/prepare_deployment.py android_${{ matrix.type }}
257257

258258
- name: Upload generic artifacts
259-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
259+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
260260
if: ${{ success() && matrix.type == 'apps' }}
261261
with:
262262
name: android_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}

.github/workflows/linux-package-stable-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
cd ${{ github.workspace }}/.github/workflows/debrepo/
7878
./repo_update.sh "$ALLOW_CREATE" ${{ env.BASEREPO }} ${{ github.workspace }} ${{ matrix.os }} "stable" ${{ env.PUBKEY }}
7979
80-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
80+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
8181
if: ${{ success() && env.SKIP_RUN == 0 }}
8282
with:
8383
name: repo-stable-${{ matrix.os }}
@@ -149,7 +149,7 @@ jobs:
149149
# Updates or creates the repository
150150
./repo_update.sh "$ALLOW_CREATE" ${{ env.BASEREPO }} ${CWD} ${{ matrix.os }} "stable" ${{ env.PUBKEY }} ${{ env.PUBKEY_HASH }}
151151
152-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
152+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
153153
if: ${{ success() && env.SKIP_RUN == 0 }}
154154
with:
155155
name: repo-stable-${{ matrix.os }}

.github/workflows/linux-package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163

164164
- name: Upload logs on failure
165165
if: ${{ failure() }}
166-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
166+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
167167
with:
168168
name: linux-package_logs_${{ matrix.type }}_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}
169169
path: deploy/logs.7z
@@ -173,7 +173,7 @@ jobs:
173173
run: python3 ./deploy/prepare_deployment.py linux_${{ matrix.type }}
174174

175175
- name: Upload artifacts
176-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
176+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
177177
if: success()
178178
with:
179179
name: linux-package_${{ matrix.type }}_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}
@@ -279,7 +279,7 @@ jobs:
279279
dpkg-deb --info "${{ github.workspace }}/${PKG_FULL}.deb"
280280
281281
- name: Upload artifacts
282-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
282+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
283283
if: success()
284284
with:
285285
name: linux-package_${{ matrix.type }}_${{ matrix.arch }}_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
@@ -670,7 +670,7 @@ jobs:
670670
rpm -qp --qf '%|DSAHEADER?{%{DSAHEADER:pgpsig}}:{%|RSAHEADER?{%{RSAHEADER:pgpsig}}:{(none)}|}|\n' "RPMS/${{ env.ARCH }}/${PKG_FULL}.rpm"
671671
672672
- name: Upload artifacts
673-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
673+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
674674
if: success()
675675
with:
676676
name: linux-package_${{ matrix.type }}_${{ matrix.arch }}_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
@@ -1137,7 +1137,7 @@ jobs:
11371137
cd ${{ github.workspace }}/.github/workflows/debrepo/
11381138
./repo_update.sh "$ALLOW_CREATE" ${{ env.BASEREPO }} ${{ github.workspace }} ${{ matrix.os }} ${{ env.RELEASE_TYPE }} ${{ env.PUBKEY }}
11391139
1140-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
1140+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
11411141
if: ${{ success() && env.SKIP_RUN == 0 }}
11421142
with:
11431143
name: repo-${{ env.RELEASE_TYPE }}-${{ matrix.os }}
@@ -1263,7 +1263,7 @@ jobs:
12631263
# Updates or creates the repository
12641264
./repo_update.sh "$ALLOW_CREATE" ${{ env.BASEREPO }} ${CWD} ${{ matrix.os }} ${{ env.RELEASE_TYPE }} ${{ env.PUBKEY }} ${{ env.PUBKEY_HASH }}
12651265
1266-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
1266+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
12671267
if: ${{ success() && env.SKIP_RUN == 0 }}
12681268
with:
12691269
name: repo-${{ env.RELEASE_TYPE }}-${{ matrix.os }}

.github/workflows/linux-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140

141141
- name: Upload logs on failure
142142
if: ${{ failure() }}
143-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
143+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
144144
with:
145145
name: linux_release_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
146146
path: deploy/logs.7z
@@ -150,7 +150,7 @@ jobs:
150150
run: python3 ./deploy/prepare_deployment.py linux_apps
151151

152152
- name: Upload wrapper artifacts
153-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
153+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
154154
if: success()
155155
with:
156156
name: linux_release_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}

.github/workflows/linux.yml

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

491491
- name: Upload logs on failure
492492
if: ${{ failure() }}
493-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
493+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
494494
with:
495495
name: linux_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
496496
path: deploy/logs.7z
@@ -500,14 +500,14 @@ jobs:
500500
run: python ./deploy/prepare_deployment.py linux_${{ matrix.type }}
501501

502502
- name: Upload artifacts
503-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
503+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
504504
if: ${{ ! contains(matrix.type, 'libs') && ! contains(matrix.type, 'server') && ! contains(matrix.type, 'test') && matrix.type != 'coverity' }}
505505
with:
506506
name: linux_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
507507
path: deploy/linux_${{ matrix.type }}.7z
508508

509509
- name: Upload Google Tests Results
510-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
510+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
511511
if: always() && matrix.type == 'unit-test' # run this step even if previous step failed
512512
with:
513513
name: Linux_tests_results

.github/workflows/mingw.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Upload logs on failure
101101
if: ${{ failure() }}
102-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
102+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
103103
with:
104104
name: mingw_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
105105
path: deploy/logs.7z
@@ -109,7 +109,7 @@ jobs:
109109
run: python ./deploy/prepare_deployment.py win_${{ matrix.type }}
110110

111111
- name: Upload artifacts
112-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
112+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
113113
if: ${{! contains(matrix.type, 'libs')}}
114114
with:
115115
name: win_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}

.github/workflows/osx-cmake.yml

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

7474
- name: Upload logs on failure
7575
if: ${{ failure() }}
76-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
76+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
7777
with:
7878
name: osx_logs_cmake-build_${{ matrix.triplet }}_${{ github.event.pull_request.head.sha }}
7979
path: deploy/logs.7z

.github/workflows/osx.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Upload logs on failure
8989
if: ${{ failure() }}
90-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
90+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
9191
with:
9292
name: osx_logs_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
9393
path: deploy/logs.7z
@@ -97,27 +97,27 @@ jobs:
9797

9898
- name: Upload manager
9999
if: matrix.type == 'manager'
100-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
100+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
101101
with:
102102
name: osx_manager_${{ github.event.pull_request.head.sha }}
103103
path: deploy/macos_manager.7z
104104

105105
- name: Upload apps
106-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
106+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
107107
with:
108108
name: osx_${{ matrix.type }}_apps_${{ github.event.pull_request.head.sha }}
109109
path: deploy/macos_apps.7z
110110

111111
- name: Upload x86_64 apps
112112
if: matrix.type == 'samples-makefile'
113-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
113+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
114114
with:
115115
name: osx_x86_64_apps_${{ github.event.pull_request.head.sha }}
116116
path: deploy/macos_apps_x86_64.7z
117117

118118
- name: Upload arm64 apps
119119
if: matrix.type == 'samples-makefile'
120-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
120+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
121121
with:
122122
name: osx_arm64_apps_${{ github.event.pull_request.head.sha }}
123123
path: deploy/macos_apps_arm64.7z

.github/workflows/snap.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
126126
- name: Upload logs on failure
127127
if: ${{ failure() }}
128-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
128+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
129129
with:
130130
name: snap_logs_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}
131131
path: deploy/logs.7z
@@ -149,7 +149,7 @@ jobs:
149149
release: beta
150150

151151
- name: Upload artifacts
152-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
152+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
153153
if: success()
154154
with:
155155
name: linux_snap_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)