mirror of
https://github.com/mii443/mozc.git
synced 2025-08-23 00:25:34 +00:00
Switch to actions/cache@v4
This commit updates 'actions/cache' used in our GitHub Actions rules from actions/cache@v3 to actions/cache@v4. According to the release note [1], there seems to be no breaking change. [1]: https://github.com/actions/cache/releases/tag/v4.0.0 #codehealth PiperOrigin-RevId: 599384139
This commit is contained in:
committed by
Hiroyuki Komatsu
parent
c6650267f4
commit
afd37bf248
10
.github/workflows/macos.yaml
vendored
10
.github/workflows/macos.yaml
vendored
@ -35,7 +35,7 @@ jobs:
|
|||||||
python3 -m pip install requests
|
python3 -m pip install requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
@ -89,7 +89,7 @@ jobs:
|
|||||||
python3 -m pip install requests
|
python3 -m pip install requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
@ -141,7 +141,7 @@ jobs:
|
|||||||
python3 -m pip install requests
|
python3 -m pip install requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
@ -193,7 +193,7 @@ jobs:
|
|||||||
python3 -m pip install requests
|
python3 -m pip install requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
@ -238,7 +238,7 @@ jobs:
|
|||||||
python3 -m pip install requests
|
python3 -m pip install requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
|
6
.github/workflows/windows.yaml
vendored
6
.github/workflows/windows.yaml
vendored
@ -30,7 +30,7 @@ jobs:
|
|||||||
python -m pip install six requests
|
python -m pip install six requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
@ -94,7 +94,7 @@ jobs:
|
|||||||
python -m pip install six requests
|
python -m pip install six requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
@ -139,7 +139,7 @@ jobs:
|
|||||||
python -m pip install requests
|
python -m pip install requests
|
||||||
|
|
||||||
- name: Try to restore update_deps cache
|
- name: Try to restore update_deps cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: src/third_party_cache
|
path: src/third_party_cache
|
||||||
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
key: update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
|
||||||
|
Reference in New Issue
Block a user