ci: Removing outdated Github action actions-cache (#33568)
Using actions/cache/save which is the supported version now.
This commit is contained in:
parent
593577da43
commit
f81cb9f970
4
.github/workflows/ci-test-limited.yml
vendored
4
.github/workflows/ci-test-limited.yml
vendored
|
|
@ -420,13 +420,11 @@ jobs:
|
||||||
# Force store previous run result to cache
|
# Force store previous run result to cache
|
||||||
- name: Store the previous run result
|
- name: Store the previous run result
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: martijnhols/actions-cache/save@v3
|
uses: actions/cache/save@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/run_result
|
~/run_result
|
||||||
key: ${{ github.run_id }}-${{ github.job }}-${{ matrix.job }}
|
key: ${{ github.run_id }}-${{ github.job }}-${{ matrix.job }}
|
||||||
restore-keys: |
|
|
||||||
${{ github.run_id }}-${{ github.job }}-${{ matrix.job }}
|
|
||||||
|
|
||||||
# Upload the log artifact so that it can be used by the test & deploy job in the workflow
|
# Upload the log artifact so that it can be used by the test & deploy job in the workflow
|
||||||
- name: Upload server logs bundle on failure
|
- name: Upload server logs bundle on failure
|
||||||
|
|
|
||||||
|
|
@ -245,13 +245,11 @@ jobs:
|
||||||
# Force save the CI failed spec list into a cache
|
# Force save the CI failed spec list into a cache
|
||||||
- name: Store the combined run result for CI
|
- name: Store the combined run result for CI
|
||||||
if: needs.ci-test.result != 'success'
|
if: needs.ci-test.result != 'success'
|
||||||
uses: martijnhols/actions-cache/save@v3
|
uses: actions/cache/save@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/combined_failed_spec_ci
|
~/combined_failed_spec_ci
|
||||||
key: ${{ github.run_id }}-"ci-test-result"
|
key: ${{ github.run_id }}-"ci-test-result"
|
||||||
restore-keys: |
|
|
||||||
${{ github.run_id }}-${{ github.job }}
|
|
||||||
|
|
||||||
# Upload combined failed CI spec list to a file
|
# Upload combined failed CI spec list to a file
|
||||||
# This is done for debugging.
|
# This is done for debugging.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user