]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
2 months agofix tests/numerics/nonlinear_solver_selector_01 17225/head
Timo Heister [Mon, 8 Jul 2024 12:14:46 +0000 (08:14 -0400)]
fix tests/numerics/nonlinear_solver_selector_01

we should initialize MPI before make calls into sundials, otherwise we
might get runtime errors:

https://cdash.dealii.org/test/1390077

2 months agoMerge pull request #17220 from tamiko/fix_compilation
Timo Heister [Sun, 7 Jul 2024 08:20:59 +0000 (09:20 +0100)]
Merge pull request #17220 from tamiko/fix_compilation

fix compilation by putting back std::move()

2 months agoMerge pull request #17221 from tamiko/fix_checksum
Martin Kronbichler [Sun, 7 Jul 2024 07:30:19 +0000 (09:30 +0200)]
Merge pull request #17221 from tamiko/fix_checksum

distributed::Triangulation: broadcast p4est checksum over all ranks

2 months agotests mpi/p4est_save* update test output for p4est checksum change 17221/head
Matthias Maier [Sun, 7 Jul 2024 04:05:48 +0000 (23:05 -0500)]
tests mpi/p4est_save* update test output for p4est checksum change

2 months agotests: mpi/p4est_2d/3d* update test output for p4est checksum change
Matthias Maier [Sun, 7 Jul 2024 03:59:45 +0000 (22:59 -0500)]
tests: mpi/p4est_2d/3d*  update test output for p4est checksum change

2 months agotests: mpi/codim* update test output for p4est checksum change
Matthias Maier [Sun, 7 Jul 2024 03:54:38 +0000 (22:54 -0500)]
tests: mpi/codim* update test output for p4est checksum change

2 months agotests: mpi/attach_data* update test output for p4est checksum change
Matthias Maier [Sat, 6 Jul 2024 00:41:23 +0000 (19:41 -0500)]
tests: mpi/attach_data* update test output for p4est checksum change

2 months agotests: mappings/* update test output for p4est checksum change
Matthias Maier [Fri, 5 Jul 2024 23:18:26 +0000 (18:18 -0500)]
tests: mappings/* update test output for p4est checksum change

2 months agodistributed::Triangulation: broadcast proper p4est checksum over all ranks
Matthias Maier [Fri, 5 Jul 2024 23:02:20 +0000 (18:02 -0500)]
distributed::Triangulation: broadcast proper p4est checksum over all ranks

2 months agoMerge pull request #17214 from drwells/nodal-quadrature
Matthias Maier [Sun, 7 Jul 2024 04:14:57 +0000 (04:14 +0000)]
Merge pull request #17214 from drwells/nodal-quadrature

Add FETools::compute_nodal_quadrature().

2 months agofix compilation by putting back std::move() 17220/head
Matthias Maier [Sun, 7 Jul 2024 03:48:22 +0000 (22:48 -0500)]
fix compilation by putting back std::move()

2 months agoMerge pull request #17205 from dominiktassilostill/SimplexGaussLobattoDummyQuadrature
Peter Munch [Sat, 6 Jul 2024 20:12:19 +0000 (22:12 +0200)]
Merge pull request #17205 from dominiktassilostill/SimplexGaussLobattoDummyQuadrature

Add QSupportPointsSimplex

2 months agoMerge pull request #17187 from drwells/cylindrical-manifold-public-data
Martin Kronbichler [Sat, 6 Jul 2024 19:19:40 +0000 (21:19 +0200)]
Merge pull request #17187 from drwells/cylindrical-manifold-public-data

Add accessor functions for essential geometric properties of the Manifold classes.

2 months agoSphericalManifold: deprecate the public center member. 17187/head
David Wells [Sat, 6 Jul 2024 14:15:06 +0000 (10:15 -0400)]
SphericalManifold: deprecate the public center member.

2 months agoPolarManifold: deprecate the public center member.
David Wells [Sat, 6 Jul 2024 14:10:58 +0000 (10:10 -0400)]
PolarManifold: deprecate the public center member.

2 months agoManifold: add accessors for all Manifold ctor arguments.
David Wells [Sat, 6 Jul 2024 13:32:31 +0000 (09:32 -0400)]
Manifold: add accessors for all Manifold ctor arguments.

This makes it easier to manipulate Manifolds after they are constructed, e.g.,
by applying a translation.

2 months agoTorusManifold: rename R and r to centerline_radius and inner_radius.
David Wells [Sat, 6 Jul 2024 13:28:33 +0000 (09:28 -0400)]
TorusManifold: rename R and r to centerline_radius and inner_radius.

These names are self-describing.

2 months agoAdd FETools::compute_nodal_quadrature(). 17214/head
David Wells [Fri, 5 Jul 2024 18:09:44 +0000 (14:09 -0400)]
Add FETools::compute_nodal_quadrature().

2 months agoMerge pull request #17217 from tamiko/fix_cmake
David Wells [Sat, 6 Jul 2024 12:39:32 +0000 (08:39 -0400)]
Merge pull request #17217 from tamiko/fix_cmake

CMake: fix release/debug only configure with CMake 3.30

2 months agoMerge pull request #17215 from tamiko/do_not_use_valgrind
David Wells [Sat, 6 Jul 2024 12:38:35 +0000 (08:38 -0400)]
Merge pull request #17215 from tamiko/do_not_use_valgrind

CMake: Bugfix: only set up valgrind wrapper when needed

2 months agoCMake: fix "Release" and "Debug" only configure for CMake 3.30 17217/head
Matthias Maier [Fri, 5 Jul 2024 22:52:04 +0000 (17:52 -0500)]
CMake: fix "Release" and "Debug" only configure for CMake 3.30

Beginning with version 3.30 CMake makes it an error to specify a
nonexistent target in a call to target_link_libraries() even if that
target is never used internally and only part of the exported interface.
This is a problem as we want to add configuration dependent targets with
a generator expression that are later exported:

  $<$<CONFIG:Release>:dealii::dealii_release> (...)

Note that we cannot simply use $<$<CONFIG:Release>:dealii_release> as
CMake then does not complete "dealii_release" to "dealii::dealii_release"
upon target export...

As a workaround we create alias targets with the "dealii::" namespace,
which makes the call to target_link_libraries() succeed.

2 months agoCMake: Bugfix: only set up valgrind wrapper when needed 17215/head
Matthias Maier [Fri, 5 Jul 2024 19:31:39 +0000 (14:31 -0500)]
CMake: Bugfix: only set up valgrind wrapper when needed

2 months agoMerge pull request #17208 from masterleinad/fix_cppcheck
Matthias Maier [Fri, 5 Jul 2024 17:53:11 +0000 (17:53 +0000)]
Merge pull request #17208 from masterleinad/fix_cppcheck

Fix CppCheck complaints

2 months agoMerge pull request #17207 from masterleinad/fix_clang_tidy_findings
Matthias Maier [Fri, 5 Jul 2024 17:52:36 +0000 (17:52 +0000)]
Merge pull request #17207 from masterleinad/fix_clang_tidy_findings

Fix clang-tidy findings

2 months agoMerge pull request #17212 from masterleinad/fix_kokkos_abort_noreturn_warning
Matthias Maier [Fri, 5 Jul 2024 17:51:59 +0000 (17:51 +0000)]
Merge pull request #17212 from masterleinad/fix_kokkos_abort_noreturn_warning

Fix deal_II_exceptions::internal::abort [[noexcept]] attribute for old Kokkos

2 months agoFix deal_II_exceptions::internal::abort [[noexcept]] attribute for old Kokkos 17212/head
Daniel Arndt [Fri, 5 Jul 2024 14:59:24 +0000 (10:59 -0400)]
Fix deal_II_exceptions::internal::abort [[noexcept]] attribute for old Kokkos

2 months agoMerge pull request #17206 from marcfehling/codespell
Daniel Arndt [Fri, 5 Jul 2024 14:31:21 +0000 (10:31 -0400)]
Merge pull request #17206 from marcfehling/codespell

Run codespell.

2 months agoMerge pull request #17198 from drwells/user-pointer-docs
Martin Kronbichler [Fri, 5 Jul 2024 13:08:56 +0000 (15:08 +0200)]
Merge pull request #17198 from drwells/user-pointer-docs

Clean up some documentation for user pointers.

2 months agoResotore ad_number_traits.h 17207/head
Daniel Arndt [Fri, 5 Jul 2024 00:20:08 +0000 (20:20 -0400)]
Resotore ad_number_traits.h

2 months agoAdd support for integrations on simplex unit support points 17205/head
Dominik Still [Fri, 5 Jul 2024 11:59:44 +0000 (13:59 +0200)]
Add support for integrations on simplex unit support points

2 months agoUpdate Truesdell & Toupin chapter. 17206/head
Marc Fehling [Fri, 5 Jul 2024 11:53:07 +0000 (13:53 +0200)]
Update Truesdell & Toupin chapter.

2 months agoMerge pull request #17199 from gassmoeller/docker-fix-build
Luca Heltai [Fri, 5 Jul 2024 07:28:41 +0000 (09:28 +0200)]
Merge pull request #17199 from gassmoeller/docker-fix-build

2 months agoMerge pull request #17194 from bangerth/petsc-ts-rename-2
Martin Kronbichler [Fri, 5 Jul 2024 06:30:47 +0000 (08:30 +0200)]
Merge pull request #17194 from bangerth/petsc-ts-rename-2

Rename a second callback in PETScWrappers::TimeStepper.

2 months agoMerge pull request #17210 from drwells/generalize-local-to-global-vertex-index
Martin Kronbichler [Fri, 5 Jul 2024 06:12:37 +0000 (08:12 +0200)]
Merge pull request #17210 from drwells/generalize-local-to-global-vertex-index

Make a function work with any Triangulation class.

2 months agoMerge pull request #17203 from tjhei/release-step-reflinks
Daniel Arndt [Fri, 5 Jul 2024 02:41:59 +0000 (22:41 -0400)]
Merge pull request #17203 from tjhei/release-step-reflinks

fix doxygen reflinks

2 months agoRestore comment 17208/head
Daniel Arndt [Fri, 5 Jul 2024 00:13:32 +0000 (20:13 -0400)]
Restore comment

2 months agoRestore signature for CellDataTransfer::unpack_callback
Daniel Arndt [Fri, 5 Jul 2024 00:11:11 +0000 (20:11 -0400)]
Restore signature for CellDataTransfer::unpack_callback

2 months agoMake a function work with any Triangulation class. 17210/head
David Wells [Thu, 4 Jul 2024 17:11:43 +0000 (13:11 -0400)]
Make a function work with any Triangulation class.

Requiring parallel::distributed::Triangulation is a holdover from 2015 when we
only had one parallel Triangulation type. This function works just fine with
p::fd::T too.

2 months agoMerge pull request #17200 from tjhei/tests-step-40-alt
Bruno Blais [Thu, 4 Jul 2024 17:25:16 +0000 (13:25 -0400)]
Merge pull request #17200 from tjhei/tests-step-40-alt

Some regression tester configuration produces slightly different output (number of cells, likely due to slightly different solution within the solver tolerance), see https://cdash.dealii.org/test/37178695

tests/examples/step-40 alternative output

2 months agoFix CppCheck complaints
Daniel Arndt [Thu, 4 Jul 2024 15:35:52 +0000 (11:35 -0400)]
Fix CppCheck complaints

2 months agoFix docker build 17199/head
Rene Gassmoeller [Wed, 3 Jul 2024 12:47:07 +0000 (14:47 +0200)]
Fix docker build

2 months agoFix clang-tidy findings
Daniel Arndt [Wed, 3 Jul 2024 22:46:49 +0000 (18:46 -0400)]
Fix clang-tidy findings

2 months agoRun codespell.
Marc Fehling [Thu, 4 Jul 2024 09:53:52 +0000 (11:53 +0200)]
Run codespell.

2 months agoMerge pull request #17184 from jh66637/step89
Martin Kronbichler [Thu, 4 Jul 2024 06:59:02 +0000 (08:59 +0200)]
Merge pull request #17184 from jh66637/step89

enhance documentation of step 89

2 months agoMerge pull request #17189 from drwells/cache-default-mapping
Martin Kronbichler [Thu, 4 Jul 2024 06:57:49 +0000 (08:57 +0200)]
Merge pull request #17189 from drwells/cache-default-mapping

GridTools::Cache: set up the default Mapping in another constructor.

2 months agoMerge pull request #17201 from tjhei/tests-ida_08
Matthias Maier [Thu, 4 Jul 2024 05:49:59 +0000 (05:49 +0000)]
Merge pull request #17201 from tjhei/tests-ida_08

fix tests/sundials/ida_08

2 months agofix doxygen reflinks 17203/head
Timo Heister [Wed, 3 Jul 2024 20:15:37 +0000 (16:15 -0400)]
fix doxygen reflinks

2 months agoMerge pull request #17059 from bangerth/task-result
Timo Heister [Wed, 3 Jul 2024 19:15:45 +0000 (20:15 +0100)]
Merge pull request #17059 from bangerth/task-result

Add a class TaskResult.

2 months agofix tests/sundials/ida_08 17201/head
Timo Heister [Wed, 3 Jul 2024 19:13:49 +0000 (15:13 -0400)]
fix tests/sundials/ida_08

The test is not robust with slightly different output appearing after
time t=3.8. Instead of trying to make it more robust, just adjust the
endtime. Also see: https://cdash.dealii.org/test/37189894

2 months agotests/examples/step-40 alternative output 17200/head
Timo Heister [Wed, 3 Jul 2024 18:50:52 +0000 (14:50 -0400)]
tests/examples/step-40 alternative output

This adds an alternative output to fix test errors in certain
configurations like https://cdash.dealii.org/test/37178695

2 months agoClean up some documentation for user pointers. 17198/head
David Wells [Wed, 3 Jul 2024 12:36:18 +0000 (08:36 -0400)]
Clean up some documentation for user pointers.

2 months agoMerge pull request #17185 from bangerth/petsc-ts-rename-1
Luca Heltai [Wed, 3 Jul 2024 10:26:10 +0000 (12:26 +0200)]
Merge pull request #17185 from bangerth/petsc-ts-rename-1

Rename a callback in PETScWrappers::TimeStepper.

2 months agoAugment documentation. 17059/head
Wolfgang Bangerth [Tue, 2 Jul 2024 23:45:25 +0000 (17:45 -0600)]
Augment documentation.

2 months agoAdd a changelog entry.
Wolfgang Bangerth [Wed, 22 May 2024 03:25:07 +0000 (21:25 -0600)]
Add a changelog entry.

2 months agoAdd tests.
Wolfgang Bangerth [Wed, 22 May 2024 03:24:20 +0000 (21:24 -0600)]
Add tests.

2 months agoAdd a class TaskResult.
Wolfgang Bangerth [Wed, 22 May 2024 03:22:30 +0000 (21:22 -0600)]
Add a class TaskResult.

2 months agoMerge pull request #14553 from peterrum/mf_fe_nothing_no_overlap
Peter Munch [Tue, 2 Jul 2024 16:56:02 +0000 (18:56 +0200)]
Merge pull request #14553 from peterrum/mf_fe_nothing_no_overlap

MatrixFree: disable overlap of communication/computation for FE_Nothing

2 months agoAdd a changelog. 17185/head
Wolfgang Bangerth [Mon, 1 Jul 2024 03:25:53 +0000 (21:25 -0600)]
Add a changelog.

2 months agoAdjust a test.
Wolfgang Bangerth [Mon, 1 Jul 2024 03:25:37 +0000 (21:25 -0600)]
Adjust a test.

2 months agoRename a callback in PETScWrappers::TimeStepper.
Wolfgang Bangerth [Mon, 1 Jul 2024 03:25:29 +0000 (21:25 -0600)]
Rename a callback in PETScWrappers::TimeStepper.

2 months agoAdd a changelog entry. 17194/head
Wolfgang Bangerth [Mon, 1 Jul 2024 20:09:17 +0000 (14:09 -0600)]
Add a changelog entry.

2 months agoAdjust a test.
Wolfgang Bangerth [Mon, 1 Jul 2024 20:08:20 +0000 (14:08 -0600)]
Adjust a test.

2 months agoRename a second callback in PETScWrappers::TimeStepper.
Wolfgang Bangerth [Mon, 1 Jul 2024 20:08:08 +0000 (14:08 -0600)]
Rename a second callback in PETScWrappers::TimeStepper.

2 months agoGridTools::Cache: set up the default Mapping in another constructor. 17189/head
David Wells [Mon, 1 Jul 2024 14:18:24 +0000 (10:18 -0400)]
GridTools::Cache: set up the default Mapping in another constructor.

This preserves the current behavior and makes the Triangulation-only version
work correctly with simplices.

2 months agoMerge pull request #17193 from bangerth/fix-spelling
Timo Heister [Tue, 2 Jul 2024 11:20:37 +0000 (12:20 +0100)]
Merge pull request #17193 from bangerth/fix-spelling

Fix the spelling of a class.

2 months agoMerge pull request #17175 from marcfehling/consistent-constraints
Peter Munch [Tue, 2 Jul 2024 06:52:19 +0000 (08:52 +0200)]
Merge pull request #17175 from marcfehling/consistent-constraints

Let AffineConstraints::make_consistent_in_parallel() iterate until converged.

2 months agoFix the spelling of a class. 17193/head
Wolfgang Bangerth [Mon, 1 Jul 2024 23:10:34 +0000 (17:10 -0600)]
Fix the spelling of a class.

2 months agoMerge pull request #17190 from marcfehling/test-examples-1
Wolfgang Bangerth [Mon, 1 Jul 2024 19:20:42 +0000 (13:20 -0600)]
Merge pull request #17190 from marcfehling/test-examples-1

Add missing include.

2 months agoMerge pull request #17188 from drwells/unset-variable-warning
Wolfgang Bangerth [Mon, 1 Jul 2024 19:19:48 +0000 (13:19 -0600)]
Merge pull request #17188 from drwells/unset-variable-warning

JumpFunction: Fix an unset variable warning.

2 months agoTest AffineConstraints::make_consistent_in_parallel() for hp constraints. 17175/head
Marc Fehling [Wed, 26 Jun 2024 11:09:18 +0000 (13:09 +0200)]
Test AffineConstraints::make_consistent_in_parallel() for hp constraints.

2 months agoLet AffineConstraints::make_consistent_in_parallel() iterate until converged.
Marc Fehling [Wed, 26 Jun 2024 11:09:43 +0000 (13:09 +0200)]
Let AffineConstraints::make_consistent_in_parallel() iterate until converged.

2 months agoMerge pull request #17186 from drwells/mapping-fe-field-assertions
Martin Kronbichler [Mon, 1 Jul 2024 15:25:17 +0000 (17:25 +0200)]
Merge pull request #17186 from drwells/mapping-fe-field-assertions

MappingFEField: check that vectors have the correct size.

2 months agoAdd missing include. 17190/head
Marc Fehling [Mon, 1 Jul 2024 15:11:40 +0000 (17:11 +0200)]
Add missing include.

2 months agoCorrectly initialize AffineConstraints object in test.
Marc Fehling [Wed, 26 Jun 2024 11:41:12 +0000 (13:41 +0200)]
Correctly initialize AffineConstraints object in test.

2 months agoMerge pull request #17166 from bangerth/89-2
David Wells [Mon, 1 Jul 2024 12:39:31 +0000 (08:39 -0400)]
Merge pull request #17166 from bangerth/89-2

Edit step-89.cc.

2 months agoJumpFunction: Fix an unset variable warning. 17188/head
David Wells [Mon, 1 Jul 2024 12:34:41 +0000 (08:34 -0400)]
JumpFunction: Fix an unset variable warning.

Not really a bug but my compiler complains about it.

2 months agoMappingFEField: check that vectors have the correct size. 17186/head
David Wells [Mon, 1 Jul 2024 12:26:39 +0000 (08:26 -0400)]
MappingFEField: check that vectors have the correct size.

2 months agoEdit step-89.cc. 17166/head
Wolfgang Bangerth [Fri, 21 Jun 2024 23:20:11 +0000 (17:20 -0600)]
Edit step-89.cc.

2 months agolimit equations to 80 char 17184/head
Johannes Heinz [Sun, 30 Jun 2024 09:39:45 +0000 (11:39 +0200)]
limit equations to 80 char

2 months agolimit text to 80 chars
Johannes Heinz [Sun, 30 Jun 2024 09:28:28 +0000 (11:28 +0200)]
limit text to 80 chars

2 months agofix typos
Johannes Heinz [Sun, 30 Jun 2024 09:07:14 +0000 (11:07 +0200)]
fix typos

2 months agoenhance documentation
Johannes Heinz [Sun, 30 Jun 2024 06:28:08 +0000 (08:28 +0200)]
enhance documentation

2 months agoMerge pull request #17182 from masterleinad/revert_fixing_symengine_tests
Timo Heister [Fri, 28 Jun 2024 17:15:08 +0000 (13:15 -0400)]
Merge pull request #17182 from masterleinad/revert_fixing_symengine_tests

Revert trying to fix symengine tests

2 months agoRevert "Merge pull request #17076 from masterleinad/fix_symengine_tests" 17182/head
Daniel Arndt [Fri, 28 Jun 2024 12:28:18 +0000 (08:28 -0400)]
Revert "Merge pull request #17076 from masterleinad/fix_symengine_tests"

This reverts commit 0f73c3e8431432f88204fa38981564b5bd1cdb41, reversing
changes made to f8df7d6869db0d83ded64008c9adeae170b52b5b.

2 months agoMerge pull request #17106 from masterleinad/revert_symengine_test_output
Timo Heister [Thu, 27 Jun 2024 19:23:21 +0000 (15:23 -0400)]
Merge pull request #17106 from masterleinad/revert_symengine_test_output

Fix symengine tests by reverting printing more to deallog

2 months agoMerge pull request #17157 from bangerth/89
David Wells [Thu, 27 Jun 2024 15:22:05 +0000 (11:22 -0400)]
Merge pull request #17157 from bangerth/89

Some edits to the documentation of step-89.

2 months agoMerge pull request #17178 from kronbichler/fix_warnings
David Wells [Thu, 27 Jun 2024 01:02:35 +0000 (21:02 -0400)]
Merge pull request #17178 from kronbichler/fix_warnings

Fix compile warning

2 months agoFix compile warning 17178/head
Martin Kronbichler [Wed, 26 Jun 2024 20:31:17 +0000 (22:31 +0200)]
Fix compile warning

2 months agoMerge pull request #17151 from bangerth/74
Bruno Turcksin [Tue, 25 Jun 2024 20:00:18 +0000 (16:00 -0400)]
Merge pull request #17151 from bangerth/74

Avoid the use of 'auto' in step-74.

2 months agoMerge pull request #17173 from luca-heltai/docker-buildx-multi-platform
Rene Gassmoeller [Tue, 25 Jun 2024 15:25:33 +0000 (09:25 -0600)]
Merge pull request #17173 from luca-heltai/docker-buildx-multi-platform

Add multi platform docker images.

2 months agoSpaces. 17173/head
Luca Heltai [Tue, 25 Jun 2024 14:28:43 +0000 (16:28 +0200)]
Spaces.

2 months agoTry to build on different runners.
Luca Heltai [Tue, 25 Jun 2024 13:41:21 +0000 (15:41 +0200)]
Try to build on different runners.

2 months agoMerge pull request #17172 from kronbichler/mf_with_array_view
Peter Munch [Tue, 25 Jun 2024 10:38:58 +0000 (12:38 +0200)]
Merge pull request #17172 from kronbichler/mf_with_array_view

Enable matrix-free loops with ArrayView arguments

2 months agoAdded back focal build.
Luca Heltai [Tue, 25 Jun 2024 10:23:34 +0000 (12:23 +0200)]
Added back focal build.

2 months agoMerge pull request #17132 from kronbichler/mapping_info_docu
Timo Heister [Tue, 25 Jun 2024 02:13:25 +0000 (22:13 -0400)]
Merge pull request #17132 from kronbichler/mapping_info_docu

Matrix-free MappingInfo: Update documentation of internal functions

2 months agoAdd multi platform docker images.
Luca Heltai [Mon, 24 Jun 2024 21:20:30 +0000 (23:20 +0200)]
Add multi platform docker images.

2 months agoChangelog 17172/head
Martin Kronbichler [Mon, 24 Jun 2024 16:04:31 +0000 (18:04 +0200)]
Changelog

2 months agoNew test case
Martin Kronbichler [Mon, 24 Jun 2024 16:03:03 +0000 (18:03 +0200)]
New test case

2 months agoEnable matrix-free loops with ArrayView arguments
Martin Kronbichler [Mon, 24 Jun 2024 16:02:44 +0000 (18:02 +0200)]
Enable matrix-free loops with ArrayView arguments

2 months agoMerge pull request #17171 from dealii/dependabot/github_actions/docker/build-push...
Marc Fehling [Mon, 24 Jun 2024 11:31:22 +0000 (13:31 +0200)]
Merge pull request #17171 from dealii/dependabot/github_actions/docker/build-push-action-6

Bump docker/build-push-action from 5 to 6


In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.