Skip to content

Commit fcfa693

Browse files
authored
Merge pull request #377 from jupyter/dependabot/github_actions/actions/cache-4.3.0
Bump actions/cache from 4.2.4 to 4.3.0
2 parents bf7aabc + e3dbbbb commit fcfa693

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/check-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
3636
- name: Cache pip
37-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
37+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3838
with:
3939
path: ${{ steps.pip-cache.outputs.dir }}
4040
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
@@ -43,7 +43,7 @@ jobs:
4343
${{ runner.os }}-pip-
4444
- name: Cache checked links
4545
if: ${{ matrix.group == 'link_check' }}
46-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
46+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4747
with:
4848
path: ~/.cache/pytest-link-check
4949
key: ${{ runner.os }}-linkcheck-${{ hashFiles('**/*.md', '**/*.rst') }}-md-links

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
3737
- name: Cache pip
38-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
38+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3939
with:
4040
path: ${{ steps.pip-cache.outputs.dir }}
4141
key: ${{ runner.os }}-pip-${{ env.python-version }}-${{ hashFiles('pyproject.toml') }}

.github/workflows/js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
4646

4747
- name: Cache yarn
48-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
48+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4949
id: yarn-cache
5050
with:
5151
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -54,7 +54,7 @@ jobs:
5454
${{ runner.os }}-yarn-
5555
5656
- name: Cache pip on Linux
57-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
57+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5858
if: startsWith(runner.os, 'Linux')
5959
with:
6060
path: ~/.cache/pip
@@ -63,7 +63,7 @@ jobs:
6363
${{ runner.os }}-pip-${{ env.python-version }}
6464
6565
- name: Cache pip on macOS
66-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
66+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6767
if: startsWith(runner.os, 'macOS')
6868
with:
6969
path: ~/Library/Caches/pip

0 commit comments

Comments
 (0)