Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/adr-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Validate ADR structure
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-ubuntu-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Verify PowerShell version
shell: pwsh
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Verify PowerShell version
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-windows-signed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codesign-secrets-bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
env:
GH_PAT_FOR_SECRETS: ${{ secrets.CODESIGN_SECRETS_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Provision codesign secrets
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
src/Core.psm1,
tools/Build.ps1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Pester v6 (fallback to latest stable)
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Check links with lychee
uses: lycheeverse/lychee-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/handshake-watchdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
actions: read
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Compute watchdog configuration
id: config
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/local-ci-handshake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -46,7 +46,7 @@ jobs:
manifest_abs: ${{ steps.capture-meta.outputs.manifest_abs }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
WINDOWS_RUNNER_LABELS: ${{ vars.LOCALCI_WINDOWS_RUNS_ON || '["self-hosted","Windows","X64"]' }}
steps:
- name: Checkout workflow helpers
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
sparse-checkout: |
scripts/workflows
Expand All @@ -215,7 +215,7 @@ jobs:
python3 scripts/workflows/check_windows_runner_coverage.py

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psscriptanalyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
pssa:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install PSScriptAnalyzer
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
src/tools/ConsoleWatch.psm1,
src/tools/Vipm.psm1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Pester v6 (fallback to latest stable)
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run:
working-directory: src/tools/vscode/comparevi-extension
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-node@v4
with:
Expand Down
Loading