From bc1ade1e71927a8e81a96c7fc4b2c91968241ef1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 05:30:01 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact in the github-actions group Bumps the github-actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/pages.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a731708..4149cf71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: - name: Upload Pester artifacts if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pester-artifacts-${{ matrix.os }} if-no-files-found: warn @@ -139,7 +139,7 @@ jobs: - name: Upload PSScriptAnalyzer artifacts if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: psscriptanalyzer-artifacts if-no-files-found: warn diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 13b8672a..f3668993 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -41,7 +41,7 @@ jobs: - name: Upload docs audit artifact if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: docs-audit if-no-files-found: warn diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 98f45405..0fdd2b67 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -215,7 +215,7 @@ jobs: - name: Upload workflow artifact (expanded folder) if: ${{ inputs.publish_release != true && !startsWith(github.ref, 'refs/tags/v') }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: IdLE-${{ steps.tag.outputs.value }}-expanded path: artifacts/staging-${{ steps.tag.outputs.value }} @@ -223,7 +223,7 @@ jobs: - name: Upload workflow artifact (zip) if: ${{ inputs.publish_release == true || startsWith(github.ref, 'refs/tags/v') }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: IdLE-${{ steps.tag.outputs.value }}-zip path: artifacts/IdLE-${{ steps.tag.outputs.value }}.zip