Skip to content

Commit 410e601

Browse files
committed
[ci] update actions
Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
1 parent 3f67fea commit 410e601

File tree

11 files changed

+32
-32
lines changed

11 files changed

+32
-32
lines changed

.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@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
48+
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284
4949
with:
5050
commit-message: Update all_projects_list.xml
5151
title: Update all_projects_list.xml

.github/workflows/android.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,31 +110,31 @@ jobs:
110110
fetch-depth: 2
111111

112112
- name: Download armv6 client
113-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
113+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
114114
with:
115115
name: android_client_armv6_${{ github.event.pull_request.head.sha }}
116116
path: android/BOINC/app/src/main/assets/
117117

118118
- name: Download arm client
119-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
119+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
120120
with:
121121
name: android_client_arm_${{ github.event.pull_request.head.sha }}
122122
path: android/BOINC/app/src/main/assets/
123123

124124
- name: Download arm64 client
125-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
125+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
126126
with:
127127
name: android_client_arm64_${{ github.event.pull_request.head.sha }}
128128
path: android/BOINC/app/src/main/assets/
129129

130130
- name: Download x86 client
131-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
131+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
132132
with:
133133
name: android_client_x86_${{ github.event.pull_request.head.sha }}
134134
path: android/BOINC/app/src/main/assets/
135135

136136
- name: Download x86_64 client
137-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
137+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
138138
with:
139139
name: android_client_x86_64_${{ github.event.pull_request.head.sha }}
140140
path: android/BOINC/app/src/main/assets/
@@ -185,7 +185,7 @@ jobs:
185185

186186
- name: Upload coverage report
187187
if: ${{ matrix.task == 'jacocoTestReportDebug' }}
188-
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3
188+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574
189189
env:
190190
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
191191

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
sudo apt-get install -y libftgl-dev freeglut3-dev libcurl4-openssl-dev libxmu-dev libxi-dev libfcgi-dev libxss-dev libnotify-dev libxcb-util0-dev libgtk-3-dev libsecret-1-dev libgcrypt20-dev libsystemd-dev libwebkit2gtk-4.1-dev p7zip-full libxxf86vm-dev ocl-icd-opencl-dev zip
3737
3838
- name: Cache dependencies
39-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f
39+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
4040
with:
4141
path: |
4242
3rdParty/buildCache

.github/workflows/linux-package.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
168168
- name: Download
169169
if: success()
170-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
170+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
171171
with:
172172
name: linux-package_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
173173
path: pkgs/
@@ -285,7 +285,7 @@ jobs:
285285
286286
- name: Download
287287
if: success()
288-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
288+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
289289
with:
290290
name: linux-package_${{ matrix.type }}_${{ github.event.pull_request.head.sha }}
291291
path: pkgs/
@@ -646,13 +646,13 @@ jobs:
646646
647647
- name: Download client
648648
if: success()
649-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
649+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
650650
with:
651651
name: linux-package_client_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
652652

653653
- name: Download manager
654654
if: success()
655-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
655+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
656656
with:
657657
name: linux-package_manager_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
658658

@@ -728,13 +728,13 @@ jobs:
728728
729729
- name: Download client
730730
if: success()
731-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
731+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
732732
with:
733733
name: linux-package_client_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
734734

735735
- name: Download manager
736736
if: success()
737-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
737+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
738738
with:
739739
name: linux-package_manager_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
740740

@@ -796,13 +796,13 @@ jobs:
796796
797797
- name: Download client
798798
if: success()
799-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
799+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
800800
with:
801801
name: linux-package_client_fc${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
802802

803803
- name: Download manager
804804
if: success()
805-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
805+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
806806
with:
807807
name: linux-package_manager_fc${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
808808

@@ -870,13 +870,13 @@ jobs:
870870
871871
- name: Download client
872872
if: success()
873-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
873+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
874874
with:
875875
name: linux-package_client_suse${{ env.OS }}_${{ github.event.pull_request.head.sha }}
876876

877877
- name: Download manager
878878
if: success()
879-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
879+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
880880
with:
881881
name: linux-package_manager_suse${{ env.OS }}_${{ github.event.pull_request.head.sha }}
882882

@@ -930,13 +930,13 @@ jobs:
930930
931931
- name: Download client
932932
if: ${{ success() && env.SKIP_RUN == 0 }}
933-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
933+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
934934
with:
935935
name: linux-package_client_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
936936

937937
- name: Download manager
938938
if: ${{ success() && env.SKIP_RUN == 0 }}
939-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
939+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
940940
with:
941941
name: linux-package_manager_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
942942

@@ -1029,13 +1029,13 @@ jobs:
10291029
10301030
- name: Download client
10311031
if: ${{ success() && env.SKIP_RUN == 0 }}
1032-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
1032+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
10331033
with:
10341034
name: linux-package_client_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
10351035

10361036
- name: Download manager
10371037
if: ${{ success() && env.SKIP_RUN == 0 }}
1038-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
1038+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
10391039
with:
10401040
name: linux-package_manager_${{ matrix.os }}_${{ github.event.pull_request.head.sha }}
10411041

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
./tests/integration_test/installTestSuite.sh
7676
7777
- name: Cache dependencies
78-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f
78+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
7979
with:
8080
path: |
8181
3rdParty/buildCache
@@ -214,7 +214,7 @@ jobs:
214214

215215
- name: Upload coverage report
216216
if: success() && matrix.type == 'unit-test'
217-
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3
217+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574
218218
env:
219219
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
220220

.github/workflows/osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4848

4949
- name: Cache dependencies
50-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f
50+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
5151
with:
5252
path: 3rdParty/buildCache
5353
key: osx-${{ hashFiles('.github/workflows/osx.yml', '3rdParty/buildMacDependencies.sh', 'mac_build/dependencyNames.sh', 'mac_build/buildc-ares.sh', 'mac_build/buildcurl.sh', 'mac_build/buildfreetype.sh', 'mac_build/buildFTGL.sh', 'mac_build/buildopenssl.sh', 'mac_build/buildWxMac.sh') }}
@@ -71,7 +71,7 @@ jobs:
7171
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
7272

7373
- name: Cache dependencies
74-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f
74+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
7575
with:
7676
path: 3rdParty/buildCache
7777
key: osx-${{ hashFiles('.github/workflows/osx.yml', '3rdParty/buildMacDependencies.sh', 'mac_build/dependencyNames.sh', 'mac_build/buildc-ares.sh', 'mac_build/buildcurl.sh', 'mac_build/buildfreetype.sh', 'mac_build/buildFTGL.sh', 'mac_build/buildopenssl.sh', 'mac_build/buildWxMac.sh') }}

.github/workflows/snap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
7777
- name: Configure docker qemu
7878
if: success()
79-
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25
79+
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392
8080

8181
- name: Build boinc snap
8282
if: success()

.github/workflows/test-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3030
- name: Download artifacts
31-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
31+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
3232
with:
3333
github-token: ${{ secrets.ACTIONS_TEST_REPORT_TOKEN }}
3434
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/update_copyright_year.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@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
48+
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284
4949
with:
5050
commit-message: Update copyright year
5151
title: Update copyright year

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
sudo apt-get install -y p7zip-full zip
5454
5555
- name: Cache dependencies
56-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f
56+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
5757
with:
5858
path: |
5959
3rdParty/buildCache

0 commit comments

Comments
 (0)