Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): bump actions/cache from 3.0.10 to 3.0.11 #145

Merged
merged 1 commit into from Oct 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions action.yaml
Expand Up @@ -63,7 +63,7 @@ runs:
with:
asdf_branch: v0.10.2
- name: Cache asdf and asdf-managed tools.
uses: actions/cache@v3.0.10
uses: actions/cache@v3.0.11
id: asdf-cache
with:
path: ${{ env.ASDF_DIR }}
Expand All @@ -84,7 +84,7 @@ runs:
echo "PATH=$poetry_cache" >>"$GITHUB_OUTPUT"
shell: bash
- name: Cache Poetry dependencies.
uses: actions/cache@v3.0.10
uses: actions/cache@v3.0.11
with:
path: |
${{ steps.poetry-cache.outputs.PATH }}
Expand All @@ -104,7 +104,7 @@ runs:
echo "PATH=$npm_cache" >>"$GITHUB_OUTPUT"
shell: bash
- name: Cache npm dependencies.
uses: actions/cache@v3.0.10
uses: actions/cache@v3.0.11
with:
path: ${{ steps.npm-cache.outputs.PATH }}
key: >
Expand All @@ -123,7 +123,7 @@ runs:
hashFiles('.pre-commit-config.yaml')
}}
- name: Cache pre-commit hooks.
uses: actions/cache@v3.0.10
uses: actions/cache@v3.0.11
with:
path: ~/.cache/pre-commit
key: >
Expand Down