From a2eadff2712cd5e5b2f92026ca476b997f0edfd1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 03:22:30 +0000 Subject: [PATCH] Bump actions/cache from 5.0.3 to 5.0.4 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.3 to 5.0.4. - [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/v5.0.3...v5.0.4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/nebula-publish.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc7f539ca..bb5fb7de8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: python -m pip install --upgrade pip if [ -f scripts/requirements.txt ]; then pip install -r scripts/requirements.txt; fi - - uses: actions/cache@v5.0.3 + - uses: actions/cache@v5.0.4 id: gradle-wrapper-cache with: path: ~/.gradle/wrapper @@ -36,14 +36,14 @@ jobs: restore-keys: ${{ runner.os }}-gradlewrapper- - name: Cache Gradle packages - uses: actions/cache@v5.0.3 + uses: actions/cache@v5.0.4 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} restore-keys: ${{ runner.os }}-gradle - name: Maven cache - uses: actions/cache@v5.0.3 + uses: actions/cache@v5.0.4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/nebula-publish.yml b/.github/workflows/nebula-publish.yml index 1e90b5ab4..e392a571b 100644 --- a/.github/workflows/nebula-publish.yml +++ b/.github/workflows/nebula-publish.yml @@ -16,14 +16,14 @@ jobs: with: distribution: 'zulu' java-version: 8 - - uses: actions/cache@v5.0.3 + - uses: actions/cache@v5.0.4 id: gradle-cache with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }} restore-keys: | - ${{ runner.os }}-gradle- - - uses: actions/cache@v5.0.3 + - uses: actions/cache@v5.0.4 id: gradle-wrapper-cache with: path: ~/.gradle/wrapper