From bf033ac349af9c467c1f5ac305a47a5e7baf536b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 22:27:32 +0000 Subject: [PATCH] chore(deps): update github artifact actions --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95fc24c..879cb83 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: Get-ChildItem -Path build/package/_CPack_Packages -Recurse | Remove-Item -Recurse -Force - name: Archive Package Artifacts if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: LevelZ-${{ runner.os }}-${{ runner.arch }}-${{ github.sha }} path: build/package/* @@ -57,7 +57,7 @@ jobs: run: ctest -C Debug -T test - name: Archive Testing Logs if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: LevelZ-Test-${{ runner.os }}-${{ runner.arch }}-${{ github.sha }} path: Testing/Temporary/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5996c8a..6ad08fb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: rm .\build\package\_CPack_Packages\ -R -Force - name: Archive Package Artifacts if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: LevelZ-Release-${{ runner.os }}-${{ runner.arch }}-${{ github.sha }} path: build/package/* @@ -74,7 +74,7 @@ jobs: id: latest_tag run: echo "LATEST_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV - name: Download Release Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: pattern: LevelZ-Release-* path: build/package