Skip to content

Commit 7944586

Browse files
Bump werkzeug from 3.1.3 to 3.1.4 in /.github (#319)
* Bump werkzeug from 3.1.3 to 3.1.4 in /.github Bumps [werkzeug](https://github.com/pallets/werkzeug) from 3.1.3 to 3.1.4. - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst) - [Commits](pallets/werkzeug@3.1.3...3.1.4) --- updated-dependencies: - dependency-name: werkzeug dependency-version: 3.1.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Add Werkzeug to remote function requirements file Signed-off-by: Lacewell, Chaunte W <chaunte.w.lacewell@intel.com> * Aggressive CI cleanup prior to testing as CI fails due to "System.IO.IOException: No space left on device" Signed-off-by: Lacewell, Chaunte W <chaunte.w.lacewell@intel.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Lacewell, Chaunte W <chaunte.w.lacewell@intel.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Lacewell, Chaunte W <chaunte.w.lacewell@intel.com>
1 parent 30b95f8 commit 7944586

3 files changed

Lines changed: 49 additions & 2 deletions

File tree

.github/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Pygments==2.19.2
2020
pyzmq==27.1.0
2121
scipy==1.16.2
2222
sk-video==1.1.10
23-
Werkzeug==3.1.3
23+
Werkzeug==3.1.4
2424
zmq==0.0.0

.github/workflows/_CI_coverage.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,52 @@ jobs:
174174
CMD_STR_hndle_str="./run_neo4j_tests.sh -t Neo4JHandlerTest ${S3_ARGS} ${COMMON_ARGS} -e neo4j://neo4j:${{ env.NEO_TEST_PORT}}"
175175
echo "CMD_STR_hndle_str=${CMD_STR_hndle_str}" >> $GITHUB_OUTPUT
176176
177+
- name: Runner cleanup
178+
run: |
179+
# Check prior to Cleanup
180+
echo "Pre-cleanup space:"
181+
df -h
182+
183+
# Remove Java (JDKs)
184+
sudo rm -rf /usr/lib/jvm
185+
186+
# Remove .NET SDKs
187+
sudo rm -rf /usr/share/dotnet
188+
189+
# Remove Swift toolchain
190+
sudo rm -rf /usr/share/swift
191+
192+
# Remove Haskell (GHC)
193+
sudo rm -rf /usr/local/.ghcup
194+
195+
# Remove Julia
196+
sudo rm -rf /usr/local/julia*
197+
198+
# Remove Android SDKs
199+
sudo rm -rf /usr/local/lib/android
200+
201+
# Remove Chromium (optional if not using for browser tests)
202+
sudo rm -rf /usr/local/share/chromium
203+
204+
# Remove Microsoft/Edge and Google Chrome builds
205+
sudo rm -rf /opt/microsoft /opt/google
206+
207+
# Remove Azure CLI
208+
sudo rm -rf /opt/az
209+
210+
# Remove PowerShell
211+
sudo rm -rf /usr/local/share/powershell
212+
213+
# Remove CodeQL and other toolcaches
214+
sudo rm -rf /opt/hostedtoolcache
215+
216+
docker system prune -af || true
217+
docker builder prune -af || true
218+
219+
# Check
220+
echo "Post-cleanup space:"
221+
df -h
222+
177223
- name: Run Neo4J Tests
178224
shell: bash
179225
env:

remote_function/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ imutils>=0.5.4
33
numpy<2.0.0
44
opencv-python-headless>=4.9.0.80
55
pillow>=11.1.0
6-
sk-video>=1.1.10
6+
sk-video>=1.1.10
7+
Werkzeug>=3.1.4

0 commit comments

Comments
 (0)