From f79d407868567193269b2828ccffbcb3393c7c00 Mon Sep 17 00:00:00 2001 From: Hugi Thordarson Date: Mon, 10 Nov 2025 08:07:46 +0000 Subject: [PATCH] Update deprecated gh cache actions to v4 --- .github/workflows/deploy.yml | 2 +- .github/workflows/manual-deploy.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a17e3d81ef3..07b8aa4bed0 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 6a85fc65771..5707c1109e0 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 6acdbb721c3..e37b8ac14b9 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 cd81af4ee9c..223ad1d183f 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') }}