Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/universal_workflow_light.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:

- name: 'Cache testplan on Github'
if: ${{ inputs.runs_on == '"ubuntu-latest"'}}
uses: 'actions/cache/save@v5'
uses: 'actions/cache/save@v6'
with:
path: |
${{ inputs.plan_folder }}/*
Expand Down Expand Up @@ -513,7 +513,7 @@ jobs:

- name: 'Cache preparedShop on github'
if: ${{ steps.iltp.outputs.install_cache_prepared_shop == 'true' && needs.init.outputs.use_private_cache != 'true'}}
uses: 'actions/cache/save@v5'
uses: 'actions/cache/save@v6'
with:
path: |
./*
Expand Down Expand Up @@ -674,7 +674,7 @@ jobs:

- name: 'Cache current installation on github'
if: ${{ needs.init.outputs.use_private_cache != 'true' }}
uses: 'actions/cache/save@v5'
uses: 'actions/cache/save@v6'
with:
path: |
./*
Expand Down
2 changes: 1 addition & 1 deletion load_cached_testplan/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ runs:
- name: 'Load cached testplan from GitHub'
if: ${{ inputs.runs_on == '"ubuntu-latest"'}}
id: load_testplan_cache_gh
uses: 'actions/cache/restore@v5'
uses: 'actions/cache/restore@v6'
with:
path: |
${{ inputs.plan_folder}}/*
Expand Down
2 changes: 1 addition & 1 deletion start_shop/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ runs:
- name: 'Load cached testplan from GitHub'
if: ${{ inputs.runs_on == '"ubuntu-latest"'}}
id: load_installed_shop_gh
uses: 'actions/cache/restore@v5'
uses: 'actions/cache/restore@v6'
with:
path: |
./*
Expand Down
Loading