Skip to content

Commit 7d28d67

Browse files
authored
Merge pull request #3253 from boutproject/bump-deps
Bump some dependencies
2 parents 2416846 + e2f03be commit 7d28d67

File tree

12 files changed

+29
-24
lines changed

12 files changed

+29
-24
lines changed

.github/workflows/black-fix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
ref: ${{ github.head_ref }}
2626

.github/workflows/clang-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# Checkout the pull request branch, also include all history
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
ref: ${{ github.head_ref }}
1919
fetch-depth: 0

.github/workflows/clang-tidy-review.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
if: ${{ !endsWith(github.head_ref, '-rc') }}
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
submodules: true
2222

2323
- name: Run clang-tidy
24-
uses: ZedThree/clang-tidy-review@v0.21.0
24+
uses: ZedThree/clang-tidy-review@v0.23.0
2525
id: review
2626
with:
2727
build_dir: build
@@ -46,4 +46,4 @@ jobs:
4646
-DBOUT_UPDATE_GIT_SUBMODULE=OFF
4747
4848
- name: Upload clang-tidy fixes
49-
uses: ZedThree/clang-tidy-review/upload@v0.21.0
49+
uses: ZedThree/clang-tidy-review/upload@v0.23.0

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: Checkout repository
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656

5757
- name: Log in to the Container registry
5858
uses: docker/login-action@master

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: always()
1818

1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
submodules: true
@@ -57,7 +57,7 @@ jobs:
5757
if: always()
5858

5959
steps:
60-
- uses: actions/checkout@v5
60+
- uses: actions/checkout@v6
6161
with:
6262
fetch-depth: 0
6363
submodules: true
@@ -106,7 +106,7 @@ jobs:
106106
if: always()
107107

108108
steps:
109-
- uses: actions/checkout@v5
109+
- uses: actions/checkout@v6
110110
with:
111111
fetch-depth: 0
112112
submodules: true

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
libparpack2-dev
169169
libhypre-dev
170170

171-
- uses: actions/checkout@v5
171+
- uses: actions/checkout@v6
172172
with:
173173
submodules: true
174174

@@ -182,7 +182,7 @@ jobs:
182182
python -m pip install -r requirements.txt
183183
184184
- name: Cache SUNDIALS build
185-
uses: actions/cache@v4
185+
uses: actions/cache@v5
186186
with:
187187
path: /home/runner/local
188188
key: bout-sundials-${{ matrix.config.os }}${{ matrix.config.build_petsc }}
@@ -205,7 +205,7 @@ jobs:
205205
timeout-minutes: 120
206206
runs-on: ubuntu-latest
207207
steps:
208-
- uses: actions/checkout@v5
208+
- uses: actions/checkout@v6
209209
with:
210210
submodules: true
211211
- name: Build Fedora
@@ -219,7 +219,7 @@ jobs:
219219
container: ghcr.io/ggeorgakoudis/boutdev-cuda:latest
220220

221221
steps:
222-
- uses: actions/checkout@v5
222+
- uses: actions/checkout@v6
223223
with:
224224
submodules: true
225225
- name: Build minimal CUDA 12.2 @ GCC9.4.0 @ Ubuntu 20.04

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ endif()
729729

730730
option(BOUT_BUILD_DOCS "Build the documentation" OFF)
731731
if (BOUT_BUILD_DOCS)
732-
add_subdirectory(manual EXCLUDE_FROM_ALL)
732+
add_subdirectory(manual)
733733
endif()
734734

735735

cmake/SetupBOUTThirdParty.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ if (BOUT_USE_NETCDF)
164164
include(FetchContent)
165165
FetchContent_Declare(
166166
netcdf-cxx4
167-
GIT_REPOSITORY https://github.com/ZedThree/netcdf-cxx4
168-
GIT_TAG "ad3e50953190615cb69dcc8a4652f9a88a8499cf"
167+
GIT_REPOSITORY https://github.com/Unidata/netcdf-cxx4
168+
GIT_TAG "a43d6d4d415d407712c246faca553bd951730dc1"
169169
)
170170
# Don't build the netcdf tests, they have lots of warnings
171171
set(NCXX_ENABLE_TESTS OFF CACHE BOOL "" FORCE)

externalpackages/googletest

Submodule googletest updated 49 files

0 commit comments

Comments
 (0)