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."