From bc0a2b3eda9648041b81ed986ffae1571376e7a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:28:50 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64cfad0b..34cb1f47 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: distribution: 'zulu' java-version: '17' - name: Cache app - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: app-${{ github.sha }} path: ./app @@ -89,7 +89,7 @@ jobs: with: node-version: '20' - name: Cache webapp - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: webapp-${{ github.sha }} path: ./@xoutput/webapp/webapp @@ -113,12 +113,12 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Cache app - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: app-${{ github.sha }} path: ./app - name: Cache webapp - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: webapp-${{ github.sha }} path: ./@xoutput/webapp/webapp