From 440ab3fd419b4694a9d40f11b26da9c40c25463d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 13:53:39 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4.6.2 to 7.0.1 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.2 to 7.0.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.6.2...043fb46d1a93c77aae656e7c1c64a875d1fc6a0a) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Signed-off-by: Tom Wieczorek --- .github/workflows/build-docs.yml | 2 +- .github/workflows/build-image-bundle.yml | 2 +- .github/workflows/ostests-e2e.yaml | 4 ++-- .github/workflows/release.yml | 8 ++++---- .github/workflows/smoketest.yaml | 2 +- .github/workflows/win-wsl.yaml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index e16f9fe769e8..7cdc6ea6fce1 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -60,7 +60,7 @@ jobs: run: make -C docs docs - name: Upload site/ - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: site path: site/ diff --git a/.github/workflows/build-image-bundle.yml b/.github/workflows/build-image-bundle.yml index a62998841d44..dba8a4804f6b 100644 --- a/.github/workflows/build-image-bundle.yml +++ b/.github/workflows/build-image-bundle.yml @@ -78,7 +78,7 @@ jobs: make "$IMAGE_BUNDLE_NAME-image-bundle-$TARGET_OS-$TARGET_ARCH.tar" - name: "Upload :: Image bundle" - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: ${{ inputs.image-bundle-name }}-image-bundle-${{ inputs.target-os }}-${{ inputs.target-arch }} path: ${{ inputs.image-bundle-name }}-image-bundle-${{ inputs.target-os }}-${{ inputs.target-arch }}.tar diff --git a/.github/workflows/ostests-e2e.yaml b/.github/workflows/ostests-e2e.yaml index fade44d27ff4..b613d042eb68 100644 --- a/.github/workflows/ostests-e2e.yaml +++ b/.github/workflows/ostests-e2e.yaml @@ -219,7 +219,7 @@ jobs: - name: "e2e tests :: Upload results" if: always() && (steps.e2e-retrieve-parallel.conclusion == 'success' || steps.e2e-retrieve-serial.conclusion == 'success') - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: ostests-e2e-${{ inputs.os }}-${{ inputs.arch }}-${{ inputs.network-provider }}-${{ inputs.kube-proxy-mode }}-sonobuoy-results path: | @@ -242,7 +242,7 @@ jobs: - name: "e2e tests :: Upload k0sctl logs" if: always() && steps.tf-init.conclusion == 'success' - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: ostests-e2e-${{ inputs.os }}-${{ inputs.arch }}-${{ inputs.network-provider }}-${{ inputs.kube-proxy-mode }}-k0sctl-logs path: ~/.cache/k0sctl/k0sctl.log diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 873a0026a206..4e194e2a47c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -95,7 +95,7 @@ jobs: - name: Collect k0s logs and support bundle if: failure() - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: logs-x64 path: | @@ -166,7 +166,7 @@ jobs: asset_content_type: application/octet-stream - name: Upload Artifact for use in other Jobs - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: k0s-linux-amd64 path: ./k0s @@ -322,7 +322,7 @@ jobs: - name: Collect k0s logs and support bundle if: failure() - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: logs-arm64 path: | @@ -346,7 +346,7 @@ jobs: asset_content_type: application/octet-stream - name: Upload Artifact for use in other Jobs - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: k0s-linux-arm64 path: ./k0s diff --git a/.github/workflows/smoketest.yaml b/.github/workflows/smoketest.yaml index 912e08ea5e76..ad53a4cf40fd 100644 --- a/.github/workflows/smoketest.yaml +++ b/.github/workflows/smoketest.yaml @@ -90,7 +90,7 @@ jobs: - name: Collect k0s logs, support bundle and conformance test results if: failure() - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: ${{ inputs.name }}${{ inputs.k0s-reference-version && format('-{0}', inputs.k0s-reference-version) || '' }}-${{ inputs.arch }}-files path: | diff --git a/.github/workflows/win-wsl.yaml b/.github/workflows/win-wsl.yaml index e36f2fc022c8..6f6558af5f60 100644 --- a/.github/workflows/win-wsl.yaml +++ b/.github/workflows/win-wsl.yaml @@ -285,7 +285,7 @@ jobs: & wsl journalctl --boot -u k0scontroller.service | Out-File -FilePath logs/k0scontroller.log -Encoding utf8 - name: Upload k0s & container logs - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: failure() with: name: containers-logs