Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/abi-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
FILE_DOTS=$(echo "${{ inputs.file_ref }}" | sed -r "s/([0-9]+)\_([0-9]+)\_([0-9]+)\-([0-9]+).*/\1\.\2\.\3\-\4/")
echo "HDF4R_DOTS=$FILE_DOTS" >> $GITHUB_OUTPUT

- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5

- name: Get published binary (Linux)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-ubuntu-2404_gcc-binary
path: ${{ github.workspace }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aocc-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Get Sources
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5

- name: Install Dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5

- name: Run clang-format style check for C and Java code
uses: DoozyX/clang-format-lint-action@v0.20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
permissions:
contents: write # In order to allow EndBug/add-and-commit to commit changes
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5

- name: Fix C and Java formatting issues detected by clang-format
uses: DoozyX/clang-format-lint-action@v0.20
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cmake-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_coverage)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_Leak)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_Address)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_UndefinedBehavior)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cmake-bintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: choco install ninja

- name: Set up JDK 19
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '19'
distribution: 'temurin'
Expand All @@ -33,7 +33,7 @@ jobs:

# Get files created by cmake-ctest script
- name: Get published binary (Windows)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: zip-vs2022_cl-${{ inputs.build_mode }}-binary
path: ${{ github.workspace }}/hdf4
Expand Down Expand Up @@ -99,13 +99,13 @@ jobs:
sudo apt-get install ninja-build doxygen graphviz

- name: Set up JDK 19
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '19'
distribution: 'temurin'

- name: Get published binary (Linux)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-ubuntu-2404_gcc-${{ inputs.build_mode }}-binary
path: ${{ github.workspace }}
Expand Down Expand Up @@ -149,13 +149,13 @@ jobs:
run: brew install ninja doxygen

- name: Set up JDK 19
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '19'
distribution: 'temurin'

- name: Get published binary (MacOS_latest)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-macos14_clang-${{ inputs.build_mode }}-binary
path: ${{ github.workspace }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cmake-ctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

# Get files created by release script
- name: Get zip-tarball (Windows)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
if: ${{ needs.check-secret.outputs.sign-state == 'exists' }}

- name: Set up JDK 19
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '19'
distribution: 'temurin'
Expand All @@ -380,7 +380,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (MacOS_latest)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -570,7 +570,7 @@ jobs:

# Get files created by release script
- name: Get zip-tarball (Windows_intel)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -709,7 +709,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_intel)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/cmake-script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

# Get files created by release script
- name: Get zip-tarball (Windows)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
clang -v

- name: Set up JDK 19
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '19'
distribution: 'temurin'
Expand All @@ -253,7 +253,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (MacOS_latest)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -354,7 +354,7 @@ jobs:

# Get files created by release script
- name: Get zip-tarball (Windows_intel)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -460,7 +460,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_intel)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -555,7 +555,7 @@ jobs:

# Get files created by release script
- name: Get zip-tarball (Windows_clang)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -663,7 +663,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_clang)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5
- uses: codespell-project/actions-codespell@master
with:
skip: ./config/sanitizer/sanitizers.cmake,./hdf/util/testfiles/*.raw,./hdf/util/testfiles/head.r8,./mfhdf/ncdump/*,./mfhdf/ncgen/*,./mfhdf/nctest/*,./mfhdf/README,./mfhdf/THANKS,./mfhdf/FAQ
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cygwin-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
git config --global core.autocrlf input

- name: Get Sources
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5

- name: Install Cygwin
uses: cygwin/cygwin-install-action@master
Expand All @@ -56,7 +56,7 @@ jobs:

# Get files created by release script
- name: Get zip-tarball (Cygwin)
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run-ignore: ${{ steps.getinputs.outputs.INPUTS_IGNORE }}

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5

- name: Get hdf4 release base name
uses: dsaltares/fetch-gh-release-asset@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/intel-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get Sources (Linux)
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5

- name: Install Dependencies (Linux)
shell: bash
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Get Sources (Windows)
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5

- name: Install Dependencies (Windows)
run: choco install ninja
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
version: "1.9.7"

- name: Set up JDK 19
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: '19'
distribution: 'temurin'
Expand All @@ -134,7 +134,7 @@ jobs:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Get Sources
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5

# CMAKE CONFIGURE
- name: CMake Configure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mingw-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get Sources
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5

- name: Install Dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msys2-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
git config --global core.autocrlf input

- name: Get Sources
uses: actions/checkout@v4.1.1
uses: actions/checkout@v5

- name: CMake Configure
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/netcdf-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
sudo apt install -y bzip2 m4 flex bison cmake libzip-dev doxygen openssl libtool libtool-bin

- name: Checkout HDF4
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5

- name: CMake Configure HDF4
run: |
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
working-directory: ${{ runner.workspace }}/build

- name: Checkout HDF5
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5
with:
repository: HDFGroup/hdf5
path: hdf5
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
working-directory: ${{ runner.workspace }}/build5

- name: Checkout netCDF
uses: actions/checkout@v4.1.7
uses: actions/checkout@v5
with:
repository: unidata/netcdf-c
path: netcdf-c
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nvhpc-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get Sources
uses: actions/checkout@v4.2.1
uses: actions/checkout@v5

- name: Install Dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ppc64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Ubuntu PowerPC CMake

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v5

- uses: uraimo/run-on-arch-action@v3
name: Run commands
Expand Down
Loading
Loading