Skip to content

Commit

Permalink
update action and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanbez committed Aug 22, 2024
1 parent 6147b12 commit baa9b14
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-1.10.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-1.10.7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build/h5bench_e3sm-prefix/src/h5bench_e3sm-stamp/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-1.10.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-1.12.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-1.14.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build*/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-1.14.1-compress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build*/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-1.14.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build*/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-develop-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build*/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h5bench-hdf5-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ jobs:

- name: Upload artifact
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test
path: build*/storage/**/std*
Expand Down
2 changes: 1 addition & 1 deletion h5bench_patterns/h5bench_read.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ get_filter_info(hid_t dset_id)
return 0;
}
FILTER_INFO.filter_id =
H5Pget_filter2(dcpl, 0, H5Z_FLAG_MANDATORY, &FILTER_INFO.cd_nelmts, FILTER_INFO.cd_values, 255,
H5Pget_filter2(dcpl, 0, H5Z_FLAG_MANDATORY, FILTER_INFO.cd_nelmts, FILTER_INFO.cd_values, 255,
FILTER_INFO.name, FILTER_INFO.filter_config);

if (FILTER_INFO.filter_id < 0) {
Expand Down

0 comments on commit baa9b14

Please sign in to comment.