Skip to content

Commit b5f54ef

Browse files
Bump actions/upload-artifact from 4 to 5 (#935)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1019623 commit b5f54ef

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525
- name: Build
2626
run: make build
2727
- name: Store operator binary
28-
uses: actions/upload-artifact@v4
28+
uses: actions/upload-artifact@v5
2929
with:
3030
name: elemental-operator
3131
path: build/elemental-operator
3232
overwrite: true
3333
- name: Store register binary
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v5
3535
with:
3636
name: elemental-register
3737
path: build/elemental-register
3838
overwrite: true
3939
- name: Store support binary
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v5
4141
with:
4242
name: elemental-support
4343
path: build/elemental-support

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
- name: e2e tests
3434
run: LOCAL_BUILD=true make e2e-tests
3535
- name: Upload chart
36-
uses: actions/upload-artifact@v4
36+
uses: actions/upload-artifact@v5
3737
with:
3838
name: chart
3939
path: build/*.tgz
4040
overwrite: true
4141
- name: Archive artifacts
4242
if: always()
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: ci-artifacts
4646
path: _artifacts

0 commit comments

Comments
 (0)