From 727d37ab738640af9d95b6e0d2494492e622ef2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 06:04:37 +0000 Subject: [PATCH] Bump the all-actions group across 1 directory with 3 updates Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/stale](https://github.com/actions/stale). Updates `actions/checkout` from 6 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/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `actions/stale` from 10 to 11 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v10...v11) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/stale dependency-version: '11' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yaml | 8 ++++---- .github/workflows/devskim.yml | 2 +- .github/workflows/powershell.yml | 2 +- .github/workflows/stale.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index ce85ac2..2c14c90 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -28,14 +28,14 @@ jobs: steps: # Checkout repository (fetch full history + tags for Git-tagging tests) - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # required so HEAD~1..HEAD and tag lookups work fetch-tags: true # required so `git tag --points-at HEAD` can see tags # Cache user-scoped PowerShell modules to speed up PSDepend installs - name: Cache PowerShell modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.local/share/powershell/Modules @@ -133,14 +133,14 @@ jobs: steps: # Checkout repository (fetch full history + tags; required for tag-aware tests and packaging) - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true # Cache user-scoped PowerShell modules to speed up PSDepend installs - name: Cache PowerShell modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.local/share/powershell/Modules diff --git a/.github/workflows/devskim.yml b/.github/workflows/devskim.yml index fd9e42a..21b026b 100644 --- a/.github/workflows/devskim.yml +++ b/.github/workflows/devskim.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run DevSkim scanner uses: microsoft/DevSkim-Action@v1 diff --git a/.github/workflows/powershell.yml b/.github/workflows/powershell.yml index 2a46180..a0228ec 100644 --- a/.github/workflows/powershell.yml +++ b/.github/workflows/powershell.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run PSScriptAnalyzer uses: microsoft/psscriptanalyzer-action@v1.1 diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index dd35756..32fe008 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -18,7 +18,7 @@ jobs: pull-requests: write # add/remove labels, comment, close PRs steps: - - uses: actions/stale@v10 + - uses: actions/stale@v11 with: stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove the stale label or comment, otherwise it will be closed in 5 days." stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove the stale label or comment, otherwise it will be closed in 10 days."