From 2621e24b41f03f63c9fc25c6285ac728b5aaaf59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 02:05:12 +0000 Subject: [PATCH] build(deps): bump actions/download-artifact from 5 to 6 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/default.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index edb2665b..ddd95244 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -59,19 +59,19 @@ jobs: uses: actions/checkout@v5 - name: ⬇ Download build angular - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: angular-example path: ./build/angular-example - name: ⬇ Download build react - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: react-example path: ./build/react-example - name: ⬇ Download build vue - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: vue-example path: ./build/vue-example