Skip to content

Commit 43c0c2f

Browse files
Bump actions/upload-artifact from 6.0.0 to 7.0.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6.0.0 to 7.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@b7c566a...bbbca2d) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 91e80d5 commit 43c0c2f

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/cloud-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
if: success() || failure()
9494

9595
- name: Upload cloud test results
96-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
96+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
9797
if: success() || failure() # run this step even if previous step failed
9898
with: # upload a combined archive with unit and integration test results
9999
name: cloud-test-results-aks-${{ matrix.k8s-version }}
@@ -102,7 +102,7 @@ jobs:
102102
.github/terraform/aks/aks-${{ matrix.k8s-version }}.json
103103
104104
- name: Upload test logs artifact
105-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
105+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
106106
if: failure()
107107
with:
108108
name: test-logs-aks-${{ matrix.k8s-version }}
@@ -175,14 +175,14 @@ jobs:
175175
if: success() || failure()
176176

177177
- name: Upload test results
178-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
178+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
179179
if: success() || failure() # run this step even if previous step failed
180180
with: # upload a combined archive with unit and integration test results
181181
name: cloud-test-results-eks-${{ matrix.k8s-version }}
182182
path: integration-tests-eks-${{ matrix.k8s-version }}.xml
183183

184184
- name: Upload test logs artifact
185-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
185+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
186186
if: failure()
187187
with:
188188
name: test-logs-eks-${{ matrix.k8s-version }}
@@ -259,14 +259,14 @@ jobs:
259259
if: success() || failure()
260260

261261
- name: Upload test results
262-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
262+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
263263
if: success() || failure() # run this step even if previous step failed
264264
with: # upload a combined archive with unit and integration test results
265265
name: cloud-test-results-gke-${{ matrix.k8s-version }}
266266
path: integration-tests-gke-${{ matrix.k8s-version }}.xml
267267

268268
- name: Upload test logs artifact
269-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
269+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
270270
if: failure()
271271
with:
272272
name: test-logs-gke-${{ matrix.k8s-version }}

.github/workflows/helm-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
go-version: "${{ env.golang-version }}"
3333
- name: Build operator container image
3434
run: make docker-save
35-
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
35+
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
3636
with:
3737
name: helm-operator-build
3838
path: operator.tar
@@ -117,14 +117,14 @@ jobs:
117117
- run: mv integration-tests.xml integration-tests-helm-${{ matrix.k8s-version }}.xml
118118
if: success() || failure()
119119

120-
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
120+
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
121121
if: success() || failure()
122122
with:
123123
name: test-results-helm-${{ matrix.k8s-version }}
124124
path: integration-tests-helm-${{ matrix.k8s-version }}.xml
125125

126126
- name: Upload test logs artifact
127-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
127+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
128128
if: failure()
129129
with:
130130
name: helm-test-logs-${{ matrix.k8s-version }}

.github/workflows/integration-tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: make docker-save
4343
- name: Generate manifests
4444
run: make manifests generate generate-manifests
45-
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
45+
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
4646
with:
4747
name: operator-build
4848
path: |
@@ -112,14 +112,14 @@ jobs:
112112
- run: mv integration-tests.xml integration-tests-${{ matrix.k8s-distro }}-${{ matrix.k8s-version }}.xml
113113
if: success() || failure()
114114

115-
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
115+
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
116116
if: success() || failure() # run this step even if previous step failed
117117
with: # upload a combined archive with unit and integration test results
118118
name: test-results-${{ matrix.k8s-distro }}-${{ matrix.k8s-version }}
119119
path: integration-tests-${{ matrix.k8s-distro }}-${{ matrix.k8s-version }}.xml
120120

121121
- name: Upload test logs artifact
122-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
122+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
123123
if: failure()
124124
with:
125125
name: test-logs-${{ matrix.k8s-distro }}-${{ matrix.k8s-version }}
@@ -168,7 +168,7 @@ jobs:
168168
run: make test/integration/external-cluster
169169

170170
- name: Upload test logs artifact
171-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
171+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
172172
if: failure()
173173
with:
174174
name: test-logs-external-cluster

.github/workflows/tests-forks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Upload
38-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
38+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
3939
with:
4040
name: Event File
4141
path: ${{ github.event_path }}

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Upload
22-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
22+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
2323
with:
2424
name: Event File
2525
path: ${{ github.event_path }}

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
cache: true
2525

2626
- run: make test/ci
27-
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
27+
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
2828
if: success() || failure() # run this step even if previous step failed
2929
with:
3030
name: test-results-unit

0 commit comments

Comments
 (0)