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
4 changes: 2 additions & 2 deletions .github/workflows/PSScriptAnalyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: PSScriptAnalyzer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6
# Check https://github.com/microsoft/action-psscriptanalyzer for more info about the options.
- name: Run PSScriptAnalyzer
uses: microsoft/psscriptanalyzer-action@6b2948b1944407914a58661c49941824d149734f
Expand All @@ -40,6 +40,6 @@ jobs:

# Upload the SARIF file generated in the previous step
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@v4.32.0
uses: github/codeql-action/upload-sarif@v4.35.1
with:
sarif_file: PSScriptAnalyzer.sarif
2 changes: 1 addition & 1 deletion .github/workflows/bad-ci-test-GITHUB_TOKEN.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

steps:
- name: '📥 Checkout repository'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: '⚠️ WARNING - This is a bad test'
run: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run Pester (JUnit results + Cobertura coverage)
shell: pwsh
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
}

- name: Publish test results (JUnit)
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v3
if: always()
with:
name: Pester Tests (Ubuntu)
Expand All @@ -75,14 +75,14 @@ jobs:
output: both

- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
uses: marocchino/sticky-pull-request-comment@v3
if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md

- name: Upload raw XML artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: pester-results-ubuntu
Expand All @@ -94,7 +94,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run Pester (JUnit results + Cobertura coverage)
shell: pwsh
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
Invoke-Pester -Configuration $config

- name: Publish test results (JUnit)
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v3
if: always()
with:
name: Pester Tests (Windows)
Expand All @@ -137,7 +137,7 @@ jobs:
# Coverage summary is reported by the Ubuntu job

- name: Upload raw XML artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: pester-results-windows
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: SARIF file
path: results.sarif
Expand All @@ -68,6 +68,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard (optional).
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@f985be5b50bd175586d44aac9ac52926adf12893 # v3.31.8
uses: github/codeql-action/upload-sarif@ee09113642cdd89dfd282ecd8d96340380bbee26 # v3.31.8
with:
sarif_file: results.sarif
Loading