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/build-extension-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Upload charts artifact
if: github.ref_type == 'tag' || (github.ref == 'refs/heads/main' && github.event_name != 'pull_request') || inputs.is_test == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: charts
path: tmp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
shell: bash

- name: Upload files
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: failure()
with:
name: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-pr-build-extension-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Upload charts artifact
if: github.ref_type == 'tag' || (github.ref == 'refs/heads/main' && github.event_name != 'pull_request') || inputs.is_test == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: charts-create-pr
path: tmp
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/extensions-compatibility-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ jobs:

# Upload to sorry cypress in case of failure
- name: Upload screenshots
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() }}
with:
name: ${{github.run_number}}-${{github.run_attempt}}-extensions-compatibility-tests-screenshots-${{ matrix.role.tag }}+${{ matrix.features[0] }}-${{ matrix.rancherEnv }}
path: cypress/screenshots

- name: Merge Artifacts
uses: actions/upload-artifact/merge@v5
uses: actions/upload-artifact/merge@v6
with:
name: ${{github.run_number}}-${{github.run_attempt}}-extensions-compatibility-tests-screenshots-${{ matrix.role.tag }}+${{ matrix.features[0] }}
pattern: ${{github.run_number}}-${{github.run_attempt}}-extensions-compatibility-tests-screenshots-*
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
- name: Build e2e
run: yarn e2e:build
- name: Upload e2e build
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ env.E2E_BUILD_DIST_NAME }}
path: ${{ env.E2E_BUILD_DIST_DIR }}/
if-no-files-found: error
retention-days: 10
compression-level: 9
- name: Upload e2e build ember
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ env.E2E_BUILD_DIST_EMBER_NAME }}
path: ${{ env.E2E_BUILD_DIST_EMBER_DIR }}/
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
cp browser-logs/out.html artifacts/browser-logs.html

- name: Upload Artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ failure() }}
with:
name: ${{github.run_number}}-${{github.run_attempt}}-artifacts-${{ matrix.role.tag }}${{ matrix.features[0] }}${{ matrix.features[1] }}
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
TEST_A11Y: true

- name: Upload report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: accessibility-report
path: cypress/accessibility
Expand All @@ -228,7 +228,7 @@ jobs:
cp -r coverage/unit/ coverage-artifacts/coverage/unit/

- name: Upload coverage
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{github.run_number}}-${{github.run_attempt}}-coverage
path: coverage-artifacts/**/*
Expand Down
Loading