From b4c1e4b7618f3d26b518a340f949eb7ff274f3c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 13:56:53 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/cache](https://github.com/actions/cache). Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 16 ++++++++-------- .github/workflows/tests.yml | 10 +++++----- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3f7c632..024cef2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -108,7 +108,7 @@ jobs: with: persist-credentials: false - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: android-library @@ -131,7 +131,7 @@ jobs: persist-credentials: false - name: Download libs - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: xcframework @@ -194,23 +194,23 @@ jobs: persist-credentials: false - name: Download Linux libraries - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: linux-library - name: Download macOS libraries - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: macos-library - name: Download Windows libraries - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: windows-library - name: Download Windows libraries - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: windows-library - name: Download static Android libraries - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: android-static @@ -243,7 +243,7 @@ jobs: persist-credentials: false - name: Download wasm bundle - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: wasm-library diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9c37e1f..0aef8ac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -158,24 +158,24 @@ jobs: run: | dart pub get dart analyze - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: dart/.dart_tool/hooks_runner/ key: hooks-${{ matrix.os }}-${{ hashFiles('dart/pubspec.lock') }} restore-keys: hooks-${{ matrix.os }} - name: Download libs - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: linux-library path: dart/assets - name: Download libs - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: macos-library path: dart/assets - name: Download libs - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v8 with: name: windows-library path: dart/assets @@ -208,7 +208,7 @@ jobs: dart pub get dart analyze - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: dart/.dart_tool/hooks_runner/ key: hooks-${{ matrix.os }}-${{ hashFiles('dart/pubspec.lock') }}