Skip to content

Commit b38e34e

Browse files
authored
Merge pull request #1995 from jedwards4b/fillvalue_fix.wif
Fillvalue fix.wif
2 parents fcb8529 + 6b60bc8 commit b38e34e

21 files changed

Lines changed: 50 additions & 49 deletions

File tree

.github/actions/buildhdf5/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ inputs:
3434
runs:
3535
using: composite
3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3838
with:
3939
repository: HDFGroup/hdf5
4040
path: hdf5-src

.github/actions/buildmpich/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
runs:
1414
using: composite
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
repository: pmodels/mpich
1919
path: mpich-src

.github/actions/buildnetcdf/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ inputs:
4545
runs:
4646
using: composite
4747
steps:
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949
with:
5050
repository: Unidata/netcdf-c
5151
path: netcdf-c-src

.github/actions/buildnetcdff/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ inputs:
1919
runs:
2020
using: composite
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
repository: Unidata/netcdf-fortran
2525
path: netcdf-fortran-src

.github/actions/buildopenmpi/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
runs:
1414
using: composite
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
repository: open-mpi/ompi
1919
path: openmpi-src

.github/actions/buildpnetcdf/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description: 'Build the pnetcdf library'
22
inputs:
33
pnetcdf_version:
44
description: 'Tag in the pnetcdf repository to use'
5-
default: checkpoint.1.12.3
5+
default: checkpoint.1.14.0
66
required: False
77
type: string
88
install_prefix:
@@ -23,7 +23,7 @@ inputs:
2323
runs:
2424
using: composite
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
with:
2828
repository: Parallel-NetCDF/PnetCDF
2929
path: pnetcdf-src

.github/actions/parallelio_autotools/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description: 'Build the parallelio library using cmake'
22
inputs:
33
parallelio_version:
44
description: 'Tag in the parallelio repository to use'
5-
default: pio2_5_10
5+
default: pio2_6_3
66
required: False
77
type: string
88
shared_libraries:
@@ -101,12 +101,12 @@ runs:
101101
using: composite
102102
steps:
103103
- name: Check if already present
104-
uses: andstor/file-existence-action@v2
104+
uses: andstor/file-existence-action@v3
105105
with:
106106
files: ${{ inputs.src_path }}
107107
- name: get parallelio
108108
if: ${{ steps.check_files.outputs.files_exists != 'true' }}
109-
uses: actions/checkout@v3
109+
uses: actions/checkout@v4
110110
with:
111111
repository: NCAR/ParallelIO
112112
path: ${{ inputs.src_path }}

.github/actions/parallelio_cmake/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description: 'Build the parallelio library using cmake'
22
inputs:
33
parallelio_version:
44
description: 'Tag in the parallelio repository to use'
5-
default: pio2_5_9
5+
default: pio2_6_3
66
required: False
77
type: string
88
shared_libraries:
@@ -110,7 +110,7 @@ inputs:
110110
runs:
111111
using: composite
112112
steps:
113-
- uses: actions/checkout@v3
113+
- uses: actions/checkout@v4
114114
with:
115115
repository: NCAR/ParallelIO
116116
path: parallelio-src

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# LDFLAGS: "-static-libasan"
2020
# ASAN_OPTIONS: "detect_odr_violation=0"
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Installs
2424
run: |
2525
set -x

.github/workflows/cmake_ubuntu_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
PNETCDF_VERSION: checkpoint.1.12.3
2424
FCFLAGS: "-fallow-argument-mismatch"
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Installs
2828
run: |
2929
set -x
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: cache-pnetcdf
3838
id: cache-pnetcdf
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/pnetcdf
4242
key: pnetcdf-${{ runner.os }}-${{ env.PNETCDF_VERSION }}

0 commit comments

Comments
 (0)