4646 uses : actions/checkout@v4
4747 with :
4848 submodules : true
49+ persist-credentials : false
4950
5051 - name : Setup environment
5152 uses : ./.github/actions/setup-build-env
9192 steps :
9293 - name : Checkout Yosys
9394 uses : actions/checkout@v4
95+ with :
96+ persist-credentials : false
9497
9598 - name : Setup environment
9699 uses : ./.github/actions/setup-build-env
@@ -117,7 +120,7 @@ jobs:
117120 uses : actions/cache@v4
118121 with :
119122 path : .local/
120- key : ${{ matrix.os }}-${{ env. IVERILOG_GIT } }
123+ key : ${{ matrix.os }}-${IVERILOG_GIT}
121124
122125 - name : Build iverilog
123126 if : steps.cache-iverilog.outputs.cache-hit != 'true'
@@ -169,6 +172,8 @@ jobs:
169172 steps :
170173 - name : Checkout Yosys
171174 uses : actions/checkout@v4
175+ with :
176+ persist-credentials : false
172177
173178 - name : Setup environment
174179 uses : ./.github/actions/setup-build-env
@@ -190,7 +195,7 @@ jobs:
190195 - name : Run tests
191196 shell : bash
192197 run : |
193- make -C docs test -j${{ env. procs }}
198+ make -C docs test -j$procs
194199
195200 test-docs-build :
196201 name : Try build docs
@@ -206,6 +211,7 @@ jobs:
206211 uses : actions/checkout@v4
207212 with :
208213 submodules : true
214+ persist-credentials : false
209215
210216 - name : Runtime environment
211217 run : |
@@ -215,7 +221,7 @@ jobs:
215221 run : |
216222 make config-clang
217223 echo "ENABLE_CCACHE := 1" >> Makefile.conf
218- make -j${{ env. procs }}
224+ make -j$procs
219225
220226 - name : Install doc prereqs
221227 shell : bash
@@ -225,7 +231,7 @@ jobs:
225231 - name : Build docs
226232 shell : bash
227233 run : |
228- make docs DOC_TARGET=${{ matrix.docs-target }} -j${{ env. procs }}
234+ make docs DOC_TARGET=${{ matrix.docs-target }} -j$procs
229235
230236 - name : Store docs build artifact
231237 uses : actions/upload-artifact@v4
0 commit comments