Skip to content
Closed
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
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
release-version:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Test-ReleaseVersion
Expand All @@ -30,7 +30,7 @@ jobs:
command-health:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Test-WorkstationCommands -Quick
shell: pwsh
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
platform-hardening:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Test-WorkstationPlatformHardening
shell: pwsh
run: |
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Smoke install.ps1 in temp dir
shell: pwsh
env:
Expand All @@ -74,7 +74,7 @@ jobs:
init-smoke:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: devshell init dry-run
shell: pwsh
run: |
Expand All @@ -86,7 +86,7 @@ jobs:
privacy-smoke:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Privacy audit smoke (offline)
shell: pwsh
run: |
Expand All @@ -95,7 +95,7 @@ jobs:
doctor-smoke:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Doctor Core smoke
shell: pwsh
run: |
Expand All @@ -105,7 +105,7 @@ jobs:
runs-on: windows-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Health dashboard smoke
shell: pwsh
run: |
Expand All @@ -116,7 +116,7 @@ jobs:
pester:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Install Pester
shell: pwsh
run: Install-Module Pester -Force -Scope CurrentUser -MinimumVersion 5.5.0 -SkipPublisherCheck
Expand All @@ -127,7 +127,7 @@ jobs:
script-analysis:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Install PSScriptAnalyzer
shell: pwsh
run: Install-Module PSScriptAnalyzer -Force -Scope CurrentUser -MinimumVersion 1.21.0
Expand All @@ -153,14 +153,14 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Build zip + SHA256
shell: pwsh
run: |
$ver = $env:GITHUB_REF_NAME.TrimStart('v')
pwsh -NoProfile -File scripts/maintainer/invoke/Build-DevReadyRelease.ps1 -Version $ver
- name: Upload release assets
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: |
dist/devready-*.zip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
runs-on: windows-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: powershell

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
Loading