Skip to content

Commit

Permalink
chore(ci): upload diagnostics using actions/upload-artifact@v4 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek authored Apr 29, 2024
1 parent c9e6845 commit 2cf074d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:

# - name: upload diagnostics
# if: ${{ always() }}
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# name: diagnostics-conformance
# path: /tmp/ktf-diag*
Expand Down Expand Up @@ -219,10 +219,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: upload diagnostics
if: ${{ always() }}
uses: actions/upload-artifact@v3
if: always()
uses: actions/upload-artifact@v4
with:
name: diagnostics-integration
name: diagnostics-integration-webhook-enabled-${{ matrix.webhook-enabled }}
path: /tmp/ktf-diag*
if-no-files-found: ignore

Expand Down Expand Up @@ -273,9 +273,9 @@ jobs:

- name: upload diagnostics
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: diagnostics-integration
name: diagnostics-integration-bluegreen-webhook-enabled-${{ matrix.webhook-enabled }}
path: /tmp/ktf-diag*
if-no-files-found: ignore

Expand Down Expand Up @@ -322,9 +322,9 @@ jobs:

- name: upload diagnostics
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: diagnostics-integration
name: diagnostics-integration-provision-fail-webhook-enabled-${{ matrix.webhook-enabled }}
path: /tmp/ktf-diag*
if-no-files-found: ignore

Expand Down Expand Up @@ -371,8 +371,8 @@ jobs:
GOTESTSUM_JUNITFILE: "e2e-tests.xml"

- name: upload diagnostics
if: ${{ always() }}
uses: actions/upload-artifact@v3
if: always()
uses: actions/upload-artifact@v4
with:
name: diagnostics-e2e
path: /tmp/ktf-diag*
Expand Down

0 comments on commit 2cf074d

Please sign in to comment.