Skip to content
Merged
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/ci-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:

- name: Upload any downloaded installer artifacts (on failure)
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: installer-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: pwsh -NoProfile -File scripts/utils/benchmark-startup.ps1 -Iterations 5 -UpdateBaseline
- name: Upload benchmark results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: performance-results
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psscriptanalyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
echo "Running reviewdog with RDJSON input"
reviewdog -f=rdjson -name=psscriptanalyzer -reporter=github-pr-review -level=error < ./.psa_for_reviewdog.rdjson
- name: Upload report artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: psscriptanalyzer-report
path: psscriptanalyzer-report.json
4 changes: 2 additions & 2 deletions .github/workflows/test-pester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- name: Run Pester
run: ${{ matrix.powershell }} -NoProfile -Command 'scripts/utils/run_pester.ps1 -Coverage'
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.os }}-${{ matrix.powershell }}
path: pester-results.xml
- name: Upload coverage reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: coverage-${{ matrix.os }}-${{ matrix.powershell }}
path: coverage.xml
4 changes: 2 additions & 2 deletions .github/workflows/validate-profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
run: ${{ matrix.powershell }} -NoProfile -File scripts/utils/generate-docs.ps1

- name: Upload documentation
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: api-docs-${{ matrix.os }}-${{ matrix.powershell }}
path: docs/

- name: Upload validation artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
with:
name: validation-results-${{ matrix.os }}-${{ matrix.powershell }}
path: |
Expand Down
Loading