diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9062e1e..15739fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: run: sudo apt-get update && sudo apt-get install -y cmake - name: Cache Cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -90,7 +90,7 @@ jobs: distribution: 'temurin' - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: m2-quality-${{ hashFiles('**/pom.xml') }} @@ -154,7 +154,7 @@ jobs: distribution: 'temurin' - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: m2-test-${{ matrix.java }}-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/dependency-update.yml b/.github/workflows/dependency-update.yml index 7da6178..a0a1aef 100644 --- a/.github/workflows/dependency-update.yml +++ b/.github/workflows/dependency-update.yml @@ -34,7 +34,7 @@ jobs: distribution: 'temurin' - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: m2-deps-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index e01c0ca..271d435 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -133,7 +133,7 @@ jobs: sudo apt-get update && sudo apt-get install -y cmake - name: Cache fuzz corpus - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: wamr4j-native/fuzz/corpus/${{ matrix.target }} key: fuzz-corpus-${{ matrix.target }}-${{ github.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b91ed53..ff53f70 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: run: sudo apt-get update && sudo apt-get install -y cmake - name: Cache Cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -114,7 +114,7 @@ jobs: distribution: 'temurin' - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: m2-test-${{ matrix.java }}-${{ hashFiles('**/pom.xml') }} @@ -175,7 +175,7 @@ jobs: distribution: 'temurin' - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: m2-quality-${{ hashFiles('**/pom.xml') }} @@ -253,7 +253,7 @@ jobs: echo "All required secrets are configured" - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: m2-publish-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 091eb9d..1100fe9 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -43,7 +43,7 @@ jobs: distribution: 'temurin' - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: m2-security-${{ hashFiles('**/pom.xml') }}