Skip to content

Commit 0062ec1

Browse files
authored
Merge pull request microsoft#214 from JoergAtGithub/nozip_dependabot_27
No double-zip and enable dependabot for 2.7
2 parents 0ef543a + 2575911 commit 0062ec1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
target-branch: "2.7"

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,11 @@ jobs:
296296

297297
- name: Upload GitHub Actions artifacts of build logs
298298
if: always()
299-
uses: actions/upload-artifact@v4
299+
uses: actions/upload-artifact@v7
300300
with:
301301
name: logs-${{ matrix.deps_name }}
302302
path: ${{ matrix.vcpkg_path }}/buildtrees/**/*.log
303+
archive: true
303304

304305
- name: Create buildenv archive
305306
run: ./vcpkg export --vcpkg-root=${{ matrix.vcpkg_path }} --x-all-installed --zip --output=${{ env.DEPS_BASE_NAME }}-${{ env.MIXXX_VERSION }}-${{ matrix.deps_name }}-${{ steps.vars.outputs.sha_short }} --output-dir=${{ matrix.vcpkg_path }}
@@ -346,10 +347,11 @@ jobs:
346347
UPLOAD_ID: ${{ github.run_id }}
347348

348349
- name: Upload GitHub Actions artifacts
349-
uses: actions/upload-artifact@v4
350+
uses: actions/upload-artifact@v7
350351
with:
351352
name: ${{ env.DEPS_BASE_NAME }}-${{ env.MIXXX_VERSION }}-${{ matrix.deps_name }}-${{ steps.vars.outputs.sha_short }}
352353
path: ${{ matrix.vcpkg_path }}/${{ env.DEPS_BASE_NAME }}-${{ env.MIXXX_VERSION }}-${{ matrix.deps_name }}-${{ steps.vars.outputs.sha_short }}.zip
354+
archive: false
353355

354356
# Workaround for https://github.com/actions/cache/issues/531
355357
- name: Use system tar & zstd from Chocolatey for caching

0 commit comments

Comments
 (0)