Skip to content

Commit 12b13c0

Browse files
Merge branch 'main' into feat/track_boolean_operations
2 parents 8344d41 + 1500e98 commit 12b13c0

30 files changed

+359
-28
lines changed

.github/workflows/backwards_compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
pytest -v --backwards-compatibility=yes --backend-version=${{ matrix.backend-version }} -rf
108108
109109
- name: Upload coverage to Codecov
110-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
110+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
111111
env:
112112
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
113113
with:

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ jobs:
295295
retention-days: 7
296296

297297
- name: Upload coverage to Codecov
298-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
298+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
299299
if: matrix.docker-image == 'core-windows-latest'
300300
env:
301301
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
@@ -441,7 +441,7 @@ jobs:
441441
randomize: true
442442

443443
- name: Upload coverage to Codecov
444-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
444+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
445445
if: matrix.docker-image == 'core-linux-latest'
446446
env:
447447
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323

2424
- name: Initialize CodeQL
25-
uses: github/codeql-action/init@96f518a34f7a870018057716cc4d7a5c014bd61c # v3.29.10
25+
uses: github/codeql-action/init@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
2626
with:
2727
languages: 'python'
2828
config-file: ./.github/codeql-config.yml
2929

3030
- name: Autobuild
31-
uses: github/codeql-action/autobuild@96f518a34f7a870018057716cc4d7a5c014bd61c # v3.29.10
31+
uses: github/codeql-action/autobuild@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
3232

3333
# If the Autobuild fails above, remove it and uncomment the following three lines.
3434
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
@@ -38,6 +38,6 @@ jobs:
3838
# ./location_of_script_within_repo/buildscript.sh
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@96f518a34f7a870018057716cc4d7a5c014bd61c # v3.29.10
41+
uses: github/codeql-action/analyze@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
4242
with:
4343
category: "/language:python"

doc/changelog.d/2180.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove materials
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump codecov/codecov-action from 5.4.3 to 5.5.0 in the actions group

doc/changelog.d/2188.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Prevent tool and command classes instantiation outside of modeler object

doc/changelog.d/2190.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Mathematical approximations leading to potential issues - allowing rounding
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump github/codeql-action from 3.29.10 to 3.29.11 in the actions group
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump requests from 2.32.4 to 2.32.5

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ tests = [
7474
"pytest-pyvista==0.2.0",
7575
"pyvista[jupyter]==0.46.1",
7676
"pyyaml==6.0.2",
77-
"requests==2.32.4",
77+
"requests==2.32.5",
7878
"scipy==1.15.3",
7979
"semver==3.0.4",
8080
"six==1.17.0",
@@ -112,7 +112,7 @@ doc = [
112112
"pygltflib==1.16.5",
113113
"pyvista[jupyter]==0.46.1",
114114
"quarto-cli==1.7.33",
115-
"requests==2.32.4",
115+
"requests==2.32.5",
116116
"scipy==1.15.3",
117117
"semver==3.0.4",
118118
"six==1.17.0",

0 commit comments

Comments
 (0)