diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index 471ca7821605..f76bb6348b65 100644 --- a/.github/workflows/alpine.yml +++ b/.github/workflows/alpine.yml @@ -53,7 +53,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{env.CCACHE_DIR}} @@ -125,7 +125,7 @@ jobs: cmake --build build_debug -j$(nproc) - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{env.CCACHE_DIR}} diff --git a/.github/workflows/archlinux.yml b/.github/workflows/archlinux.yml index db5de84a0afd..b3dff3cfd8a3 100644 --- a/.github/workflows/archlinux.yml +++ b/.github/workflows/archlinux.yml @@ -53,7 +53,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{env.CCACHE_DIR}} @@ -137,7 +137,7 @@ jobs: cmake --build build_debug -j$(nproc) - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{env.CCACHE_DIR}} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a157ab0e6337..cc961996a15e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{env.CCACHE_DIR}} @@ -167,7 +167,7 @@ jobs: cmake --build . -j $(nproc) - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{env.CCACHE_DIR}} diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index a0efa6cc37e8..c4c53f798639 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -73,7 +73,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{env.CCACHE_DIR}} @@ -126,7 +126,7 @@ jobs: cmake --build build_debug --parallel $(nproc) - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{env.CCACHE_DIR}} diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 70be81154814..cb2a956ae5fa 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -86,7 +86,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | .ccache @@ -126,7 +126,7 @@ jobs: 'cd /userver && cmake --build build -j $(nproc)' - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | .ccache diff --git a/.github/workflows/fedora.yml b/.github/workflows/fedora.yml index 87a011bb885f..9c64441017bb 100644 --- a/.github/workflows/fedora.yml +++ b/.github/workflows/fedora.yml @@ -65,7 +65,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{env.CCACHE_DIR}} @@ -117,7 +117,7 @@ jobs: cmake --build build_debug -j$(nproc) - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{env.CCACHE_DIR}} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 8fcae1ac5f21..3376e2dd882a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -43,7 +43,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{env.CCACHE_DIR}} @@ -102,7 +102,7 @@ jobs: cmake --build build_debug -j$(nproc) -- -k 1 - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{env.CCACHE_DIR}} diff --git a/.github/workflows/ubuntu-minimal.yml b/.github/workflows/ubuntu-minimal.yml index 3f5c9880eef6..6cb7936dbd87 100644 --- a/.github/workflows/ubuntu-minimal.yml +++ b/.github/workflows/ubuntu-minimal.yml @@ -37,7 +37,7 @@ jobs: - name: Restore cached directories id: restore-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: | ${{env.CCACHE_DIR}} @@ -87,7 +87,7 @@ jobs: cmake --build . -j $(nproc) - name: Save cached directories - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: path: | ${{env.CCACHE_DIR}}