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 @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v5

- name: Get published binary (Linux)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-ubuntu-2404_gcc-binary
path: ${{ github.workspace }}
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
shell: bash

- name: Save output as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: abi-reports
path: |
Expand Down
22 changes: 11 additions & 11 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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

# Save log files created by ctest script
- name: Save log (Linux_coverage)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: clang-coverage-log
path: ${{ runner.workspace }}/hdf4/hdf4.log
Expand All @@ -127,7 +127,7 @@ jobs:
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5

- name: add clang to env
uses: KyleMayes/install-llvm-action@v2.0.7
uses: KyleMayes/install-llvm-action@v2.0.8
id: setup-clang
with:
env: true
Expand All @@ -148,7 +148,7 @@ jobs:

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

# Save log files created by ctest script
- name: Save log (Linux_Leak)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: leak-ubuntu-log
path: ${{ runner.workspace }}/hdf4/hdf4.log
Expand All @@ -225,7 +225,7 @@ jobs:
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5

- name: add clang to env
uses: KyleMayes/install-llvm-action@v2.0.7
uses: KyleMayes/install-llvm-action@v2.0.8
id: setup-clang
with:
env: true
Expand All @@ -246,7 +246,7 @@ jobs:

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

# Save log files created by ctest script
- name: Save log (Linux_Address)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: address-ubuntu-log
path: ${{ runner.workspace }}/hdf4/hdf4.log
Expand All @@ -323,7 +323,7 @@ jobs:
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5

- name: add clang to env
uses: KyleMayes/install-llvm-action@v2.0.7
uses: KyleMayes/install-llvm-action@v2.0.8
id: setup-clang
with:
env: true
Expand All @@ -344,7 +344,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux_UndefinedBehavior)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -403,7 +403,7 @@ jobs:

# Save log files created by ctest script
- name: Save log (Linux_UndefinedBehavior)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: undefined-ubuntu-log
path: ${{ runner.workspace }}/hdf4/hdf4.log
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cmake-bintest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# Get files created by cmake-ctest script
- name: Get published binary (Windows)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: zip-vs2022_cl-${{ inputs.build_mode }}-binary
path: ${{ github.workspace }}/hdf4
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
distribution: 'temurin'

- name: Get published binary (Linux)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-ubuntu-2404_gcc-${{ inputs.build_mode }}-binary
path: ${{ github.workspace }}
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
distribution: 'temurin'

- name: Get published binary (MacOS_latest)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-macos14_clang-${{ inputs.build_mode }}-binary
path: ${{ github.workspace }}
Expand Down
36 changes: 18 additions & 18 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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
shell: bash

- name: Sign files with Trusted Signing
uses: azure/trusted-signing-action@v0.5.9
uses: azure/trusted-signing-action@v0.5.10
with:
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
Expand Down Expand Up @@ -191,14 +191,14 @@ jobs:

# Save files created by ctest script
- name: Save published binary (Windows)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: zip-vs2022_cl-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- name: Save published msi binary (Windows)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: msi-vs2022_cl-binary
path: ${{ runner.workspace }}/buildmsi/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_cl.msi
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (Linux)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -288,29 +288,29 @@ jobs:

# Save files created by ctest script
- name: Save published binary (Linux)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: tgz-ubuntu-2404_gcc-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2404_gcc.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- name: Save published binary deb (Linux)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: deb-ubuntu-2404_gcc-binary
path: ${{ runner.workspace }}/builddeb/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2404_gcc.deb
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- name: Save published binary rpm (Linux)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: rpm-ubuntu-2404_gcc-binary
path: ${{ runner.workspace }}/buildrpm/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2404_gcc.rpm
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

# Save doxygen files created by ctest script
- name: Save published doxygen (Linux)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: docs-doxygen
path: ${{ runner.workspace }}/hdf4/build/${{ inputs.preset_name }}-GNUC/hdf4lib_docs/html
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:

# Get files created by release script
- name: Get tgz-tarball (MacOS_latest)
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -523,14 +523,14 @@ jobs:

# Save files created by ctest script
- name: Save published binary (MacOS_latest)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: tgz-macos14_clang-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-macos14_clang.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- name: Save published dmg binary (MacOS_latest)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: tgz-macos14_clang-dmg-binary
path: ${{ runner.workspace }}/builddmg/${{ steps.set-file-base.outputs.FILE_BASE }}-macos14_clang.dmg
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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: zip-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -620,7 +620,7 @@ jobs:
shell: pwsh

- name: Sign files with Trusted Signing (Windows_intel)
uses: azure/trusted-signing-action@v0.5.9
uses: azure/trusted-signing-action@v0.5.10
with:
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }}
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}
Expand Down Expand Up @@ -662,14 +662,14 @@ jobs:

# Save files created by ctest script
- name: Save published binary (Windows_intel)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: zip-vs2022_intel-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- name: Save published msi binary (Windows_intel)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: msi-vs2022_intel-binary
path: ${{ runner.workspace }}/buildmsi/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_intel.msi
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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
Expand Down Expand Up @@ -751,7 +751,7 @@ jobs:

# Save files created by ctest script
- name: Save published binary (Linux_intel)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: tgz-ubuntu-2404_intel-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2404_intel.tar.gz
Expand Down
Loading
Loading