From dc32c326460087a3fb3f0c4af2b1f94a3a187dcf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 18:22:30 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e756d8c..e21fad6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,7 +35,7 @@ jobs: docker export dockcross/base:latest | xz -e9 -T0 > ./cache/base.tar.xz - name: save base - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cache path: ./cache @@ -86,7 +86,7 @@ jobs: docker export dockcross/base:latest-${{ env.HOST_ARCH }} | xz -e9 -T0 > ./cache/base-multiarch.tar.xz - name: save base - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cache-${{ matrix.os }} path: ./cache @@ -1489,7 +1489,7 @@ jobs: docker export dockcross/${{ matrix.arch_name.image }}:latest-${{ env.HOST_ARCH }} | xz -e9 -T0 > ./cache-${{ matrix.arch_name.image }}-${{ env.HOST_ARCH }}/${{ matrix.arch_name.image }}-${{ env.HOST_ARCH }}.tar.xz - name: save ${{ matrix.arch_name.image }}-${{ matrix.os }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: matrix.arch_name.multiarch == 'yes' with: name: cache-${{ matrix.arch_name.image }}-${{ env.HOST_ARCH }}