From dd6043cb50e54a6e17b66f517029984e6fb832ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 20:28:02 +0000 Subject: [PATCH] ci: Bump the github-actions group with 6 updates Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [streetsidesoftware/cspell-action](https://github.com/streetsidesoftware/cspell-action) | `6` | `9` | | [reviewdog/action-suggester](https://github.com/reviewdog/action-suggester) | `1.21.0` | `1.24.3` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `streetsidesoftware/cspell-action` from 6 to 9 - [Release notes](https://github.com/streetsidesoftware/cspell-action/releases) - [Changelog](https://github.com/streetsidesoftware/cspell-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/streetsidesoftware/cspell-action/compare/v6...v9) Updates `reviewdog/action-suggester` from 1.21.0 to 1.24.3 - [Release notes](https://github.com/reviewdog/action-suggester/releases) - [Commits](https://github.com/reviewdog/action-suggester/compare/v1.21.0...v1.24.3) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: streetsidesoftware/cspell-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: reviewdog/action-suggester dependency-version: 1.24.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ModuleCI.yml | 20 ++++++++++---------- .github/workflows/PublishModule.yml | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ModuleCI.yml b/.github/workflows/ModuleCI.yml index ea3f6cc..5a4574c 100644 --- a/.github/workflows/ModuleCI.yml +++ b/.github/workflows/ModuleCI.yml @@ -40,7 +40,7 @@ jobs: name: Run Linters runs-on: [ubuntu-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # Validates CHANGELOG.md against the Keep a Changelog format. Level and depth are # fails: the action also enforces a SemVer rule that a patch release may contain # only Fixed and Security sections, and existing psake module histories violate @@ -57,7 +57,7 @@ jobs: validation_level: ${{ inputs.changelog_validation_level }} validation_depth: ${{ inputs.changelog_validation_depth }} path: ./CHANGELOG.md - - uses: streetsidesoftware/cspell-action@v6 + - uses: streetsidesoftware/cspell-action@v9 with: strict: false suggestions: true @@ -66,7 +66,7 @@ jobs: name: Apply PSScriptAnalyzer Fixes run: Invoke-ScriptAnalyzer . -Fix - name: PSScriptAnalyzer Fixes - uses: reviewdog/action-suggester@v1.21.0 + uses: reviewdog/action-suggester@v1.24.3 with: tool_name: "PSScriptAnalyzer" test: @@ -78,13 +78,13 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Test shell: pwsh run: ./build.ps1 -Task Test -Bootstrap - name: Upload Unit Test Results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: Unit Test Results (OS ${{ matrix.os }}) path: ./tests/out/testResults.xml @@ -92,7 +92,7 @@ jobs: # Skipped when the build produced no coverage report, so a module that does # not measure coverage is not failed for it. if: always() && hashFiles(inputs.code_coverage_report_path) != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: Code Coverage Results (OS ${{ matrix.os }}) path: ${{ inputs.code_coverage_report_path }} @@ -135,13 +135,13 @@ jobs: # test cleanly on the lowest supported engine, not just PowerShell 7+. runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Test shell: powershell run: ./build.ps1 -Task Test -Bootstrap - name: Upload Unit Test Results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: Unit Test Results (Windows PowerShell 5.1) path: ./tests/out/testResults.xml @@ -149,7 +149,7 @@ jobs: # Skipped when the build produced no coverage report, so a module that does # not measure coverage is not failed for it. if: always() && hashFiles(inputs.code_coverage_report_path) != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: Code Coverage Results (Windows PowerShell 5.1) path: ${{ inputs.code_coverage_report_path }} @@ -195,7 +195,7 @@ jobs: if: ${{ !cancelled() }} steps: - name: Download Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: # Restricted to the test result artifacts. The test jobs also upload code # coverage reports, and the publisher below would try to read those as test diff --git a/.github/workflows/PublishModule.yml b/.github/workflows/PublishModule.yml index 54dab87..a46f183 100644 --- a/.github/workflows/PublishModule.yml +++ b/.github/workflows/PublishModule.yml @@ -40,7 +40,7 @@ jobs: module_name: ${{ steps.check_if_versions_bumped.outputs.MODULE_NAME }} new_version: ${{ steps.check_if_versions_bumped.outputs.NEW_VERSION }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Check if version is already published id: check_if_versions_bumped shell: pwsh @@ -111,7 +111,7 @@ jobs: needs: - check_version steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Read and validate changelog (keepachangelog) id: changelog uses: mindsers/changelog-reader-action@v2 @@ -120,7 +120,7 @@ jobs: version: ${{ needs.check_version.outputs.new_version }} path: ./CHANGELOG.md - name: Create GitHub Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ needs.check_version.outputs.new_version }} name: Release ${{ steps.changelog.outputs.version }} @@ -135,7 +135,7 @@ jobs: - check_version if: needs.check_version.outputs.version_bumped == 'True' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Publish to PSGallery shell: pwsh env: