diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67f0528..b4a97f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: echo "build_cache_prefix_with_hash=${{env.build_cache_prefix}}-hash-${{hashFiles('rebar.lock')}}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append - name: Restore cached build artifacts - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: _build key: ${{env.build_cache_prefix_with_hash}}-${{env.prev_github_run_number}} @@ -82,7 +82,7 @@ jobs: - name: Save build artifacts to cache if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: _build key: ${{env.build_cache_prefix_with_hash}}-${{github.run_number}}