diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 07d0ff7084..493402a5bb 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -68,7 +68,7 @@ jobs: - name: Restore build cache if: matrix.language == 'c-cpp' id: restore-cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ${{ github.workspace }}/.ccache key: ${{ matrix.id }}-${{ steps.get-arch.outputs.arch }}-${{ github.ref_name }}-${{ github.run_id }} @@ -101,7 +101,7 @@ jobs: ccache -s - name: Save build cache if: matrix.language == 'c-cpp' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ github.workspace }}/.ccache key: ${{ steps.restore-cache.outputs.cache-primary-key }}