Skip to content

Commit 2ab97a0

Browse files
dependabot[bot]praveenkumar
authored andcommitted
build(deps): bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b96b497 commit 2ab97a0

7 files changed

+9
-9
lines changed

.github/workflows/build-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
podman save -o ${{ env.IMAGE_NAME_E2E }}.tar quay.io/crcont/${{ env.IMAGE_NAME_E2E}}:id-${{ github.sha }}
2727
2828
- name: Upload e2e image
29-
uses: actions/upload-artifact@v3
29+
uses: actions/upload-artifact@v4
3030
with:
3131
name: ${{ env.IMAGE_NAME_E2E }}-id${{ github.sha }}
3232
path: ${{ env.IMAGE_NAME_E2E }}.tar
@@ -47,7 +47,7 @@ jobs:
4747
podman save -o ${{ env.IMAGE_NAME_INTEGRATION }}.tar quay.io/crcont/${{ env.IMAGE_NAME_INTEGRATION }}:id-${{ github.sha }}
4848
4949
- name: Upload integration image
50-
uses: actions/upload-artifact@v3
50+
uses: actions/upload-artifact@v4
5151
with:
5252
name: ${{ env.IMAGE_NAME_INTEGRATION }}-id${{ github.sha }}
5353
path: ${{ env.IMAGE_NAME_INTEGRATION }}.tar

.github/workflows/choco-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
CRC_VERSION=${CRC_VERSION:1}
3636
choco push ./packaging/chocolatey/crc/crc.$CRC_VERSION.nupkg --source https://push.chocolatey.org/
3737
- name: Upload nupkg artifact
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: crc-chocolatey-nupkg-${{ github.event.release.tag_name }}
4141
path: "./packaging/chocolatey/crc/*.nupkg"

.github/workflows/macos-installer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Build macOS installer
3939
run: make NO_CODESIGN=1 out/macos-universal/crc-macos-installer.pkg
4040
- name: Upload macOS installer artifact
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: macOS Installer (${{ matrix.os }})
4444
path: "./out/macos-universal/crc-macos-installer.pkg"

.github/workflows/make-rpm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Build rpm
2525
run: CONTAINER_RUNTIME=docker make test-rpmbuild
2626
- name: Upload linux binary and rpms
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: linux binary and rpm
3030
path: |

.github/workflows/windows-chocolatey.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
shell: powershell
2626
run: make choco
2727
- name: Upload nupkg artifact
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: crc-chocolatey-nupkg
3131
path: "./packaging/chocolatey/crc/*.nupkg"

.github/workflows/windows-e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
report_paths: '**/*.xml'
183183

184184
- name: Upload e2e results
185-
uses: actions/upload-artifact@v3
185+
uses: actions/upload-artifact@v4
186186
if: always()
187187
with:
188188
name: E2E-results-windows-${{ matrix.windows-version }}${{ matrix.windows-featurepack }}

.github/workflows/windows-installer.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: echo $GH_CONTEXT > gh_context.json
2121

2222
- name: Upload the GH context artifact
23-
uses: actions/upload-artifact@v3
23+
uses: actions/upload-artifact@v4
2424
with:
2525
name: gh_context
2626
path: ./gh_context.json
@@ -47,7 +47,7 @@ jobs:
4747
- name: Build Windows installer
4848
run: make out/windows-amd64/crc-windows-installer.zip
4949
- name: Upload windows installer artifact
50-
uses: actions/upload-artifact@v3
50+
uses: actions/upload-artifact@v4
5151
with:
5252
name: Windows Installer (${{ matrix.os }})
5353
path: "./out/windows-amd64/crc-windows-installer.zip"

0 commit comments

Comments
 (0)