diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a17e3d81ef..07b8aa4bed 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v1 - name: Cache Maven Dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.m2 # maven dependencies are stored in `~/.m2` on Linux key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/manual-deploy.yml b/.github/workflows/manual-deploy.yml index 6a85fc6577..5707c1109e 100644 --- a/.github/workflows/manual-deploy.yml +++ b/.github/workflows/manual-deploy.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v2 - name: Cache local Maven repository - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6acdbb721c..e37b8ac14b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: ref: ${{ github.event.inputs.branch }} - name: Cache local Maven repository - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cd81af4ee9..223ad1d183 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: uses: actions/checkout@v1 - name: Cache Maven Dependencies - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.m2 # maven dependencies are stored in `~/.m2` on Linux key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}