mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Disable more caches
This commit is contained in:
parent
88a2ae707f
commit
69de3682f0
5 changed files with 5 additions and 0 deletions
1
.github/actions/cached-virtualenv/action.yml
vendored
1
.github/actions/cached-virtualenv/action.yml
vendored
|
@ -51,6 +51,7 @@ runs:
|
|||
|
||||
- name: Cache VirtualEnv
|
||||
id: cache-virtualenv
|
||||
if: false # Disable cache since aws is going away.
|
||||
uses: ./.github/actions/cache
|
||||
with:
|
||||
key: ${{ steps.setup-cache-key.outputs.cache-key }}
|
||||
|
|
1
.github/actions/setup-actionlint/action.yml
vendored
1
.github/actions/setup-actionlint/action.yml
vendored
|
@ -16,6 +16,7 @@ runs:
|
|||
steps:
|
||||
|
||||
- name: Cache actionlint Binary
|
||||
if: false # Disable cache since aws is going away.
|
||||
uses: ./.github/actions/cache
|
||||
with:
|
||||
path: /usr/local/bin/actionlint
|
||||
|
|
1
.github/actions/setup-pre-commit/action.yml
vendored
1
.github/actions/setup-pre-commit/action.yml
vendored
|
@ -30,6 +30,7 @@ runs:
|
|||
${{ steps.pre-commit-virtualenv.outputs.python-executable }} -m pip install pre-commit==${{ inputs.version }}
|
||||
|
||||
- name: Cache Pre-Commit Hooks
|
||||
if: false # Disable cache since aws is going away.
|
||||
uses: ./.github/actions/cache
|
||||
id: pre-commit-hooks-cache
|
||||
with:
|
||||
|
|
|
@ -44,6 +44,7 @@ runs:
|
|||
cache-seed: tools|${{ steps.venv-hash.outputs.venv-hash }}
|
||||
|
||||
- name: Restore Python Tools Virtualenvs Cache
|
||||
if: false # Disable cache since aws is going away.
|
||||
uses: ./.github/actions/cache
|
||||
with:
|
||||
path: ${{ inputs.cwd }}/.tools-venvs
|
||||
|
|
1
.github/actions/setup-shellcheck/action.yml
vendored
1
.github/actions/setup-shellcheck/action.yml
vendored
|
@ -16,6 +16,7 @@ runs:
|
|||
steps:
|
||||
|
||||
- name: Cache shellcheck Binary
|
||||
if: false # Disable cache since aws is going away.
|
||||
uses: ./.github/actions/cache
|
||||
with:
|
||||
path: /usr/local/bin/shellcheck
|
||||
|
|
Loading…
Add table
Reference in a new issue