Skip to content

Commit 4de3830

Browse files
authored
Merge pull request #16175 from rancher/dependabot/github_actions/actions/upload-artifact-6
Bump actions/upload-artifact from 5 to 6
2 parents 72b249e + 8cd85b1 commit 4de3830

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build-extension-charts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
107107
- name: Upload charts artifact
108108
if: github.ref_type == 'tag' || (github.ref == 'refs/heads/main' && github.event_name != 'pull_request') || inputs.is_test == 'true'
109-
uses: actions/upload-artifact@v5
109+
uses: actions/upload-artifact@v6
110110
with:
111111
name: charts
112112
path: tmp

.github/workflows/check-plugins.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
shell: bash
2828

2929
- name: Upload files
30-
uses: actions/upload-artifact@v5
30+
uses: actions/upload-artifact@v6
3131
if: failure()
3232
with:
3333
name: test

.github/workflows/create-pr-build-extension-charts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Upload charts artifact
105105
if: github.ref_type == 'tag' || (github.ref == 'refs/heads/main' && github.event_name != 'pull_request') || inputs.is_test == 'true'
106-
uses: actions/upload-artifact@v5
106+
uses: actions/upload-artifact@v6
107107
with:
108108
name: charts-create-pr
109109
path: tmp

.github/workflows/extensions-compatibility-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ jobs:
6161

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

7070
- name: Merge Artifacts
71-
uses: actions/upload-artifact/merge@v5
71+
uses: actions/upload-artifact/merge@v6
7272
with:
7373
name: ${{github.run_number}}-${{github.run_attempt}}-extensions-compatibility-tests-screenshots-${{ matrix.role.tag }}+${{ matrix.features[0] }}
7474
pattern: ${{github.run_number}}-${{github.run_attempt}}-extensions-compatibility-tests-screenshots-*

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ jobs:
4848
- name: Build e2e
4949
run: yarn e2e:build
5050
- name: Upload e2e build
51-
uses: actions/upload-artifact@v5
51+
uses: actions/upload-artifact@v6
5252
with:
5353
name: ${{ env.E2E_BUILD_DIST_NAME }}
5454
path: ${{ env.E2E_BUILD_DIST_DIR }}/
5555
if-no-files-found: error
5656
retention-days: 10
5757
compression-level: 9
5858
- name: Upload e2e build ember
59-
uses: actions/upload-artifact@v5
59+
uses: actions/upload-artifact@v6
6060
with:
6161
name: ${{ env.E2E_BUILD_DIST_EMBER_NAME }}
6262
path: ${{ env.E2E_BUILD_DIST_EMBER_DIR }}/
@@ -154,7 +154,7 @@ jobs:
154154
cp browser-logs/out.html artifacts/browser-logs.html
155155
156156
- name: Upload Artifacts
157-
uses: actions/upload-artifact@v5
157+
uses: actions/upload-artifact@v6
158158
if: ${{ failure() }}
159159
with:
160160
name: ${{github.run_number}}-${{github.run_attempt}}-artifacts-${{ matrix.role.tag }}${{ matrix.features[0] }}${{ matrix.features[1] }}
@@ -206,7 +206,7 @@ jobs:
206206
TEST_A11Y: true
207207

208208
- name: Upload report
209-
uses: actions/upload-artifact@v5
209+
uses: actions/upload-artifact@v6
210210
with:
211211
name: accessibility-report
212212
path: cypress/accessibility
@@ -228,7 +228,7 @@ jobs:
228228
cp -r coverage/unit/ coverage-artifacts/coverage/unit/
229229
230230
- name: Upload coverage
231-
uses: actions/upload-artifact@v5
231+
uses: actions/upload-artifact@v6
232232
with:
233233
name: ${{github.run_number}}-${{github.run_attempt}}-coverage
234234
path: coverage-artifacts/**/*

0 commit comments

Comments
 (0)