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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
# This is used by the subsequent publish-test-results.yml
- name: Upload Unit Test Results
if: always() && matrix.runner-os == 'ubuntu-latest' && matrix.language == 'csharp'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Unit Test Results
path: src/OctoshiftCLI.Tests/unit-tests.xml

# This is used by the subsequent publish-test-results.yml
- name: Upload Code Coverage Report
if: always() && matrix.runner-os == 'ubuntu-latest' && matrix.language == 'csharp'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Code Coverage Report
path: code-coverage-results.md
Expand All @@ -99,7 +99,7 @@ jobs:
steps:
# This is used by the subsequent publish-test-results.yaml
- name: Upload Event File
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Event File
path: ${{ github.event_path }}
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
run: just publish-macos

- name: Upload Binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: binaries-${{ matrix.target-os }}
path: |
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
comment_mode: off

- name: Upload test logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: integration-test-logs-${{ matrix.source-vcs }}-${{ matrix.runner-os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
SKIP_LINUX: "true"

- name: Upload Binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: binaries-${{ matrix.target-os }}
path: |
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
commit: ${{ env.PR_SHA }}

- name: Upload test logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: integration-test-logs-${{ matrix.source-vcs }}-${{ matrix.runner-os }}
Expand Down
Loading