From 7a749ac200fb5612ec2a36f22ba3f26cb02af21a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 11:07:18 +0000 Subject: [PATCH] Bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5.0.0` | `6.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [KyleMayes/install-llvm-action](https://github.com/kylemayes/install-llvm-action) | `2.0.7` | `2.0.8` | | [azure/trusted-signing-action](https://github.com/azure/trusted-signing-action) | `0.5.9` | `0.5.10` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.3.3` | `2.4.1` | Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/634f93cb2916e3fdff6788551b99b062d0335ce0...018cc2cf5baa6db3ef3c5f8a56943fffe632ef53) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `KyleMayes/install-llvm-action` from 2.0.7 to 2.0.8 - [Release notes](https://github.com/kylemayes/install-llvm-action/releases) - [Changelog](https://github.com/KyleMayes/install-llvm-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/kylemayes/install-llvm-action/compare/v2.0.7...v2.0.8) Updates `azure/trusted-signing-action` from 0.5.9 to 0.5.10 - [Release notes](https://github.com/azure/trusted-signing-action/releases) - [Commits](https://github.com/azure/trusted-signing-action/compare/v0.5.9...v0.5.10) Updates `softprops/action-gh-release` from 2.3.3 to 2.4.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2.3.3...v2.4.1) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: KyleMayes/install-llvm-action dependency-version: 2.0.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: azure/trusted-signing-action dependency-version: 0.5.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: 2.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/abi-report.yml | 4 +-- .github/workflows/cmake-analysis.yml | 22 ++++++++-------- .github/workflows/cmake-bintest.yml | 6 ++--- .github/workflows/cmake-ctest.yml | 36 +++++++++++++------------- .github/workflows/cmake-script.yml | 32 +++++++++++------------ .github/workflows/cygwin-cmake.yml | 4 +-- .github/workflows/main-cmake.yml | 6 ++--- .github/workflows/release-files.yml | 38 ++++++++++++++-------------- .github/workflows/tarball.yml | 10 ++++---- 9 files changed, 79 insertions(+), 79 deletions(-) diff --git a/.github/workflows/abi-report.yml b/.github/workflows/abi-report.yml index 7af0f1c9c..5f251c71d 100644 --- a/.github/workflows/abi-report.yml +++ b/.github/workflows/abi-report.yml @@ -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 }} @@ -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: | diff --git a/.github/workflows/cmake-analysis.yml b/.github/workflows/cmake-analysis.yml index f04792501..68ade1b4a 100644 --- a/.github/workflows/cmake-analysis.yml +++ b/.github/workflows/cmake-analysis.yml @@ -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 }} @@ -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 @@ -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 @@ -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 }} @@ -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 @@ -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 @@ -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 }} @@ -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 @@ -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 @@ -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 }} @@ -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 diff --git a/.github/workflows/cmake-bintest.yml b/.github/workflows/cmake-bintest.yml index 9cafe8542..a169d3351 100644 --- a/.github/workflows/cmake-bintest.yml +++ b/.github/workflows/cmake-bintest.yml @@ -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 @@ -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 }} @@ -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 }} diff --git a/.github/workflows/cmake-ctest.yml b/.github/workflows/cmake-ctest.yml index 67d4f680f..8e3d43f96 100644 --- a/.github/workflows/cmake-ctest.yml +++ b/.github/workflows/cmake-ctest.yml @@ -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 }} @@ -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 }} @@ -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 @@ -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 }} @@ -288,21 +288,21 @@ 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 @@ -310,7 +310,7 @@ jobs: # 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 @@ -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 }} @@ -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 @@ -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 }} @@ -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 }} @@ -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 @@ -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 }} @@ -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 diff --git a/.github/workflows/cmake-script.yml b/.github/workflows/cmake-script.yml index c569bd5da..a1b90d8d3 100644 --- a/.github/workflows/cmake-script.yml +++ b/.github/workflows/cmake-script.yml @@ -56,7 +56,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 }} @@ -117,7 +117,7 @@ jobs: # Save log files created by ctest script - name: Save log (Windows_intel) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: cl-win-log path: ${{ runner.workspace }}/hdf4/hdf4.log @@ -154,7 +154,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 }} @@ -206,7 +206,7 @@ jobs: # Save log files created by ctest script - name: Save log (Linux) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: gcc-ubuntu-log path: ${{ runner.workspace }}/hdf4/hdf4.log @@ -253,7 +253,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 }} @@ -315,7 +315,7 @@ jobs: # Save log files created by ctest script - name: Save log (MacOS_latest) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: macos-log path: ${{ runner.workspace }}/hdf4/hdf4.log @@ -354,7 +354,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 }} @@ -421,7 +421,7 @@ jobs: # Save log files created by ctest script - name: Save log (Windows_intel) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: intel-win-log path: ${{ runner.workspace }}/hdf4/hdf4.log @@ -460,7 +460,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 }} @@ -516,7 +516,7 @@ jobs: # Save log files created by ctest script - name: Save log (Linux_intel) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: intel-ubuntu-log path: ${{ runner.workspace }}/hdf4/hdf4.log @@ -533,7 +533,7 @@ jobs: run: choco install ninja - 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 @@ -555,7 +555,7 @@ jobs: # Get files created by release script - name: Get zip-tarball (Windows_clang) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: zip-tarball path: ${{ github.workspace }} @@ -618,7 +618,7 @@ jobs: # Save log files created by ctest script - name: Save log (Windows_clang) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: clang-win-log path: ${{ runner.workspace }}/hdf4/hdf4.log @@ -636,7 +636,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 @@ -663,7 +663,7 @@ jobs: # Get files created by release script - name: Get tgz-tarball (Linux_clang) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: tgz-tarball path: ${{ github.workspace }} @@ -717,7 +717,7 @@ jobs: # Save log files created by ctest script - name: Save log (Linux_clang) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: clang-ubuntu-log path: ${{ runner.workspace }}/hdf4/hdf4.log diff --git a/.github/workflows/cygwin-cmake.yml b/.github/workflows/cygwin-cmake.yml index 4b5c114fc..302615e2f 100644 --- a/.github/workflows/cygwin-cmake.yml +++ b/.github/workflows/cygwin-cmake.yml @@ -56,7 +56,7 @@ jobs: # Get files created by release script - name: Get zip-tarball (Cygwin) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: zip-tarball path: ${{ github.workspace }} @@ -110,7 +110,7 @@ jobs: # Save log files created by ctest script - name: Save log (Cygwin) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: gcc-cygwin-log path: ${{ runner.workspace }}/hdf4/hdf4.log diff --git a/.github/workflows/main-cmake.yml b/.github/workflows/main-cmake.yml index 349b4de68..b8682e5e1 100644 --- a/.github/workflows/main-cmake.yml +++ b/.github/workflows/main-cmake.yml @@ -182,7 +182,7 @@ 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-${{ inputs.build_mode }}-binary path: ${{ runner.workspace }}/build/HDF-*-win64.zip @@ -190,7 +190,7 @@ jobs: if: ${{ (matrix.os == 'windows-latest') && (matrix.name != 'Ubuntu mingw CMake') && (inputs.shared == 'true') }} - name: Save published binary (linux) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: tgz-ubuntu-2404_gcc-${{ inputs.build_mode }}-binary path: ${{ runner.workspace }}/build/HDF-*-Linux.tar.gz @@ -198,7 +198,7 @@ jobs: if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.name != 'Ubuntu mingw CMake') && (inputs.shared == 'true') }} - name: Save published binary (Mac_latest) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: tgz-macos14_clang-${{ inputs.build_mode }}-binary path: ${{ runner.workspace }}/build/HDF-*-Darwin.tar.gz diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml index 798e48be4..5224e0150 100644 --- a/.github/workflows/release-files.yml +++ b/.github/workflows/release-files.yml @@ -73,7 +73,7 @@ jobs: # Get files created by tarball script - name: Get doxygen (Linux) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: docs-doxygen path: ${{ github.workspace }}/${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen @@ -82,94 +82,94 @@ jobs: run: zip -r ${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen.zip ./${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen - 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 }} - 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 }} # 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-binary path: ${{ github.workspace }} - name: Get published msi binary (Windows) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: msi-vs2022_cl-binary path: ${{ github.workspace }} - name: Get published binary (MacOS) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: tgz-macos14_clang-binary path: ${{ github.workspace }} - name: Get published dmg binary (MacOS) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: tgz-macos14_clang-dmg-binary path: ${{ github.workspace }} - 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 }} - name: Get published deb binary (Linux) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: deb-ubuntu-2404_gcc-binary path: ${{ github.workspace }} - name: Get published rpm binary (Linux) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: rpm-ubuntu-2404_gcc-binary path: ${{ github.workspace }} - name: Get published binary (Windows_intel) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: zip-vs2022_intel-binary path: ${{ github.workspace }} - name: Get published msi binary (Windows_intel) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: msi-vs2022_intel-binary path: ${{ github.workspace }} - name: Get published binary (Linux_intel) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: tgz-ubuntu-2404_intel-binary path: ${{ github.workspace }} - name: Get published abi reports (Linux) - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: abi-reports path: ${{ github.workspace }} - name: Get published nonversioned source (tgz) if: ${{ (inputs.use_environ == 'release') }} - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: tgz-tarball-nover path: ${{ github.workspace }} - name: Get published nonversioned source (zip) if: ${{ (inputs.use_environ == 'release') }} - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: zip-tarball-nover path: ${{ github.workspace }} @@ -202,7 +202,7 @@ jobs: echo "${{ steps.get-file-base.outputs.FILE_BASE }}" > ./last-file.txt - name: Get NEWSLETTER - uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0 + uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0 with: name: NEWSLETTER path: ${{ github.workspace }} @@ -214,7 +214,7 @@ jobs: - name: PreRelease tag id: create_prerelease if: ${{ (inputs.use_environ == 'snapshots') }} - uses: softprops/action-gh-release@v2.3.3 + uses: softprops/action-gh-release@v2.4.1 with: tag_name: "${{ inputs.use_tag }}" prerelease: true @@ -241,7 +241,7 @@ jobs: - name: Release tag id: create_release if: ${{ (inputs.use_environ == 'release') }} - uses: softprops/action-gh-release@v2.3.3 + uses: softprops/action-gh-release@v2.4.1 with: tag_name: "${{ inputs.use_tag }}" prerelease: false diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 3a3d943c3..be2dc2f89 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -164,14 +164,14 @@ jobs: # Save files created by release script - name: Save tgz-tarball - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: tgz-tarball path: ${{ steps.set-file-base.outputs.FILE_BASE }}.tar.gz if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` - name: Save zip-tarball - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: zip-tarball path: ${{ steps.set-file-base.outputs.FILE_BASE }}.zip @@ -179,7 +179,7 @@ jobs: - name: Save tgz-tarball-nover if: ${{ (inputs.use_environ == 'release') }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: tgz-tarball-nover path: hdf.tar.gz @@ -187,14 +187,14 @@ jobs: - name: Save zip-tarball-nover if: ${{ (inputs.use_environ == 'release') }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: zip-tarball-nover path: hdf.zip if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn` - name: Save NEWSLETTER - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: NEWSLETTER path: ./hdfsrc/release_docs/NEWSLETTER.txt