@@ -115,32 +115,35 @@ jobs:
115
115
if-no-files-found : warn
116
116
117
117
118
- cache_deps :
119
- # https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md
120
- runs-on : windows-latest
121
- timeout-minutes : 15
122
118
119
+ cache_deps :
120
+ # https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md
121
+ runs-on : windows-latest
122
+ timeout-minutes : 15
123
+ steps :
123
124
- name : Checkout
124
- uses : actions/checkout@v4
125
- with :
126
- repository : google/mozc
127
- submodules : ' recursive'
125
+ uses : actions/checkout@v4
126
+ with :
127
+ repository : google/mozc
128
+ submodules : ' recursive'
128
129
129
- - name : Set up pip
130
- shell : cmd
131
- working-directory : .\src
132
- run : |
133
- python -m pip install requests
130
+ - name : Set up pip
131
+ shell : cmd
132
+ working-directory : .\src
133
+ run : |
134
+ python -m pip install requests
134
135
135
- - name : Try to restore update_deps cache
136
- uses : actions/cache@v4
137
- with :
138
- path : src/third_party_cache
139
- key : update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
136
+ - name : Try to restore update_deps cache
137
+ uses : actions/cache@v4
138
+ with :
139
+ path : src/third_party_cache
140
+ key : update_deps-${{ runner.os }}-${{ hashFiles('src/build_tools/update_deps.py') }}
141
+
142
+ - name : Install Dependencies
143
+ shell : cmd
144
+ working-directory : .\src
145
+ # This command uses src/third_party_cache as the download cache.
146
+ run : |
147
+ python build_tools/update_deps.py --cache_only
140
148
141
- - name : Install Dependencies
142
- shell : cmd
143
- working-directory : .\src
144
- # This command uses src/third_party_cache as the download cache.
145
- run : |
146
149
python build_tools/update_deps.py --cache_only
0 commit comments