From f1d2241333a6eaf7eb87e02c726276d799aa290a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:41:51 +0000 Subject: [PATCH] CI: 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] Link: https://github.com/openwrt/actions-shared-workflows/pull/97 Signed-off-by: Hauke Mehrtens --- .github/workflows/build-pr-profile.yml | 4 ++-- .github/workflows/multi-arch-test-build.yml | 4 ++-- .github/workflows/reusable_build-tools.yml | 6 +++--- .github/workflows/reusable_build.yml | 8 ++++---- .github/workflows/reusable_check-kernel-patches.yml | 2 +- .github/workflows/reusable_check-tools.yml | 2 +- .github/workflows/tools.yml | 4 ++-- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-pr-profile.yml b/.github/workflows/build-pr-profile.yml index dc49df6..e4dbbea 100644 --- a/.github/workflows/build-pr-profile.yml +++ b/.github/workflows/build-pr-profile.yml @@ -91,7 +91,7 @@ jobs: echo "build_success=true" >> $GITHUB_OUTPUT - name: Upload log - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: steps.parse-command.outputs.build_requested == 'true' && (success() || failure()) with: name: build-log-${{ steps.parse-command.outputs.target }}-${{ steps.parse-command.outputs.subtarget }}-${{ steps.parse-command.outputs.profile }} @@ -106,7 +106,7 @@ jobs: - name: Upload build artifacts if: steps.build.outputs.build_success == 'true' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-${{ steps.parse-command.outputs.target }}-${{ steps.parse-command.outputs.subtarget }}-${{ steps.parse-command.outputs.profile }} path: build-artifacts.tar.gz diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index 1349c5a..139aba2 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -165,7 +165,7 @@ jobs: - name: Store packages if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{env.ARCHIVE_NAME}}-packages path: | @@ -178,7 +178,7 @@ jobs: - name: Store logs if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{env.ARCHIVE_NAME}}-logs path: | diff --git a/.github/workflows/reusable_build-tools.yml b/.github/workflows/reusable_build-tools.yml index 0a091c6..fff3604 100644 --- a/.github/workflows/reusable_build-tools.yml +++ b/.github/workflows/reusable_build-tools.yml @@ -46,14 +46,14 @@ jobs: - name: Upload logs if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: linux-buildbot-logs path: openwrt/logs - name: Upload config if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: linux-buildbot-config path: openwrt/.config @@ -66,7 +66,7 @@ jobs: - name: Upload prebuilt tools if: inputs.generate_prebuilt_artifacts == true - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: linux-buildbot-prebuilt-tools path: openwrt/tools.tar diff --git a/.github/workflows/reusable_build.yml b/.github/workflows/reusable_build.yml index 1fa9531..799240a 100644 --- a/.github/workflows/reusable_build.yml +++ b/.github/workflows/reusable_build.yml @@ -262,7 +262,7 @@ jobs: - name: Upload fixed Packages if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-packages-fixed path: openwrt/packages-fixed @@ -756,7 +756,7 @@ jobs: - name: Upload logs if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-logs path: "openwrt/logs" @@ -795,7 +795,7 @@ jobs: - name: Upload ccache cache if: inputs.use_ccache_cache == true && github.event_name == 'push' && inputs.upload_ccache_cache == true - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-ccache-cache path: openwrt/${{ needs.setup_build.outputs.ccache_name }}.tar @@ -811,7 +811,7 @@ jobs: - name: Upload prebuilt toolchain if: inputs.upload_external_toolchain == true - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.target }}-${{ inputs.subtarget }}-external-toolchain path: openwrt/bin/targets/${{ inputs.target }}/${{ inputs.subtarget }}/${{ steps.get-toolchain-name.outputs.toolchain-name }} diff --git a/.github/workflows/reusable_check-kernel-patches.yml b/.github/workflows/reusable_check-kernel-patches.yml index f5116bc..3463351 100644 --- a/.github/workflows/reusable_check-kernel-patches.yml +++ b/.github/workflows/reusable_check-kernel-patches.yml @@ -149,7 +149,7 @@ jobs: - name: Upload Refreshed Patches if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-refreshed path: openwrt/${{ inputs.target }}-${{ inputs.subtarget }}-refreshed diff --git a/.github/workflows/reusable_check-tools.yml b/.github/workflows/reusable_check-tools.yml index f4c44dd..1c46b7e 100644 --- a/.github/workflows/reusable_check-tools.yml +++ b/.github/workflows/reusable_check-tools.yml @@ -132,7 +132,7 @@ jobs: - name: Upload fixed tools if: failure() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: tools-fixed path: openwrt/tools-fixed diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 3b9524f..3d194b9 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -65,14 +65,14 @@ jobs: - name: Upload logs if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: macos-latest-logs path: ${{ env.WORKPATH }}/openwrt/logs - name: Upload config if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: macos-latest-config path: ${{ env.WORKPATH }}/openwrt/.config