Skip to content

Commit 45f8b70

Browse files
dependabot[bot]igorkorsukov
authored andcommitted
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c1199c7 commit 45f8b70

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.github/workflows/build_all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
UPLOAD_ARTIFACT_NAME="$(tr '":<>|*?/\\’' '_' <<<"MU4_${BUILD_NUMBER}_Dummy-${{ matrix.os }}_${BUILD_BRANCH}")"
188188
echo "UPLOAD_ARTIFACT_NAME=${UPLOAD_ARTIFACT_NAME}" | tee -a "${GITHUB_ENV}"
189189
- name: Upload artifacts to GitHub
190-
uses: actions/upload-artifact@v4
190+
uses: actions/upload-artifact@v5
191191
with:
192192
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
193193
path: ${{ env.ARTIFACTS_DIR }}

.github/workflows/build_backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
149149
- name: Upload artifacts on GitHub
150150
if: ${{ always() }}
151-
uses: actions/upload-artifact@v4
151+
uses: actions/upload-artifact@v5
152152
with:
153153
name: ${{ env.GITHUB_ARTIFACT_NAME }}
154154
path: ./build.artifacts/

.github/workflows/build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ jobs:
233233
run: |
234234
bash ./buildscripts/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os linux --arch ${{ matrix.arch }} -v 4
235235
- name: Upload artifacts on GitHub
236-
uses: actions/upload-artifact@v4
236+
uses: actions/upload-artifact@v5
237237
with:
238238
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
239239
path: ./build.artifacts/

.github/workflows/build_linux_arm32.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
run: |
174174
bash ./buildscripts/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os linux --arch armv7l -v 4
175175
- name: Upload artifacts on GitHub
176-
uses: actions/upload-artifact@v4
176+
uses: actions/upload-artifact@v5
177177
with:
178178
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
179179
path: ./build.artifacts/

.github/workflows/build_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
run: |
227227
bash ./buildscripts/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os macos -v 4
228228
- name: Upload artifacts on GitHub
229-
uses: actions/upload-artifact@v4
229+
uses: actions/upload-artifact@v5
230230
with:
231231
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
232232
path: ./build.artifacts/

.github/workflows/build_wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
run: |
8787
bash ./buildscripts/ci/wasm/package.sh
8888
- name: Upload artifacts on GitHub
89-
uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@v5
9090
with:
9191
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
9292
path: ./build.artifacts/

.github/workflows/build_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
bash ./buildscripts/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os windows -v 4
219219
- name: Upload artifacts on GitHub
220220
if: ${{ always() }}
221-
uses: actions/upload-artifact@v4
221+
uses: actions/upload-artifact@v5
222222
with:
223223
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
224224
path: build.artifacts\
@@ -351,7 +351,7 @@ jobs:
351351
run: |
352352
bash ./buildscripts/ci/tools/osuosl/publish.sh -s ${{ secrets.OSUOSL_SSH_ENCRYPT_SECRET }} --os windows -v 4 --arch x86_64
353353
- name: Upload artifacts on GitHub
354-
uses: actions/upload-artifact@v4
354+
uses: actions/upload-artifact@v5
355355
with:
356356
name: ${{ env.UPLOAD_ARTIFACT_NAME }}
357357
path: build.artifacts\

.github/workflows/check_visual_tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
echo "============== ccache ==============="
9999
ccache -sv
100100
- name: Upload
101-
uses: actions/upload-artifact@v4
101+
uses: actions/upload-artifact@v5
102102
with:
103103
name: current_build
104104
path: ./build.artifacts/
@@ -145,7 +145,7 @@ jobs:
145145
echo "============== ccache ==============="
146146
ccache -sv
147147
- name: Upload
148-
uses: actions/upload-artifact@v4
148+
uses: actions/upload-artifact@v5
149149
with:
150150
name: reference_build
151151
path: ./build.artifacts/
@@ -159,12 +159,12 @@ jobs:
159159
- name: Clone repository
160160
uses: actions/checkout@v5
161161
- name: Download current
162-
uses: actions/download-artifact@v5
162+
uses: actions/download-artifact@v6
163163
with:
164164
name: current_build
165165
path: ./musescore_current
166166
- name: Download reference
167-
uses: actions/download-artifact@v5
167+
uses: actions/download-artifact@v6
168168
with:
169169
name: reference_build
170170
path: ./musescore_reference
@@ -185,7 +185,7 @@ jobs:
185185
./vtest/vtest-compare-pngs.sh --ci 1 -c ./current_pngs_gp_small -r ./reference_pngs_gp_small -o ./comparison/gp
186186
- name: Upload comparison
187187
if: env.VTEST_DIFF_FOUND == 'true'
188-
uses: actions/upload-artifact@v4
188+
uses: actions/upload-artifact@v5
189189
with:
190190
name: ${{ needs.setup.outputs.artifact_name }}
191191
path: ./comparison

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Clone repository
8888
uses: actions/checkout@v5
8989
- name: Download and extract artifacts
90-
uses: actions/download-artifact@v5
90+
uses: actions/download-artifact@v6
9191
with:
9292
path: build.artifacts
9393
- name: Collate release binaries

.github/workflows/translate_tx_pull_to_s3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
115115
- name: Upload artifacts on GitHub
116116
if: env.DO_PUSH_TO_S3 == 'true'
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v5
118118
with:
119119
name: MuseScore_Studio_locale_${{ env.BUILD_NUMBER }}
120120
path: ./share/locale

0 commit comments

Comments
 (0)