diff --git a/.github/workflows/windows-artifacts.yml b/.github/workflows/windows-artifacts.yml index 424d4ad92a..0004919003 100644 --- a/.github/workflows/windows-artifacts.yml +++ b/.github/workflows/windows-artifacts.yml @@ -32,7 +32,7 @@ jobs: - name: Build Windows installer run: make out/windows-amd64/crc-windows-installer.zip - name: Upload windows installer artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Windows Installer (${{ matrix.os }}) path: "./out/windows-amd64/crc-windows-installer.zip" @@ -53,7 +53,7 @@ jobs: podman save -o ${{ env.IMAGE_NAME_E2E }}.tar quay.io/crcont/${{ env.IMAGE_NAME_E2E}}:gh - name: Upload e2e image - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.IMAGE_NAME_E2E }}-gh path: ${{ env.IMAGE_NAME_E2E }}.tar @@ -74,7 +74,7 @@ jobs: podman save -o ${{ env.IMAGE_NAME_INTEGRATION }}.tar quay.io/crcont/${{ env.IMAGE_NAME_INTEGRATION }}:gh - name: Upload integration image - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.IMAGE_NAME_INTEGRATION }}-gh path: ${{ env.IMAGE_NAME_INTEGRATION }}.tar @@ -93,7 +93,7 @@ jobs: run: echo $GH_CONTEXT > gh_context.json - name: Upload the GH context artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: gh_context path: ./gh_context.json