summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2024-01-08 14:06:40 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2024-02-14 21:17:46 (GMT)
commit2ba069f3b4d5f45202b34c564e5345b9544dccb1 (patch)
tree5d78f1fef15a5cc4a1cea1721df02c33b81e139b /.github
parent987a734e759c82c65a661ae6090b2252d63a7aec (diff)
downloadhdf5-2ba069f3b4d5f45202b34c564e5345b9544dccb1.zip
hdf5-2ba069f3b4d5f45202b34c564e5345b9544dccb1.tar.gz
hdf5-2ba069f3b4d5f45202b34c564e5345b9544dccb1.tar.bz2
Update upload- artifact to match download version (#3929)
* Update upload- artifact to match download version * Correct form of action call
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cmake-ctest.yml22
-rw-r--r--.github/workflows/release.yml4
-rw-r--r--.github/workflows/tarball.yml4
3 files changed, 15 insertions, 15 deletions
diff --git a/.github/workflows/cmake-ctest.yml b/.github/workflows/cmake-ctest.yml
index b4302cc..890f69b 100644
--- a/.github/workflows/cmake-ctest.yml
+++ b/.github/workflows/cmake-ctest.yml
@@ -36,7 +36,7 @@ jobs:
# Get files created by release script
- name: Get zip-tarball (Windows)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: zip-tarball
path: ${{ github.workspace }}
@@ -83,7 +83,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Windows)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-vs2022_cl-binary
path: ${{ runner.workspace }}/build114/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip
@@ -106,7 +106,7 @@ jobs:
# Get files created by release script
- name: Get tgz-tarball (Linux)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
@@ -145,7 +145,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Linux)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-ubuntu-2204_gcc-binary
path: ${{ runner.workspace }}/build114/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.tar.gz
@@ -153,7 +153,7 @@ jobs:
# Save doxygen files created by ctest script
- name: Save published doxygen (Linux)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: docs-doxygen
path: ${{ runner.workspace }}/hdf5/build114/ci-StdShar-GNUC/hdf5lib_docs/html
@@ -176,7 +176,7 @@ jobs:
# Get files created by release script
- name: Get tgz-tarball (MacOS)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
@@ -224,7 +224,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (MacOS)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-osx12-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-osx12.tar.gz
@@ -259,7 +259,7 @@ jobs:
# Get files created by release script
- name: Get zip-tarball (Windows_intel)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: zip-tarball
path: ${{ github.workspace }}
@@ -310,7 +310,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Windows_intel)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-vs2022_intel-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip
@@ -340,7 +340,7 @@ jobs:
# Get files created by release script
- name: Get tgz-tarball (Linux_intel)
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4.1.0
with:
name: tgz-tarball
path: ${{ github.workspace }}
@@ -383,7 +383,7 @@ jobs:
# Save files created by ctest script
- name: Save published binary (Linux_intel)
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: tgz-ubuntu-2204_intel-binary
path: ${{ runner.workspace }}/build/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2e65978..66cd27f 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -66,14 +66,14 @@ jobs:
# Save files created by release script
- name: Save tgz-tarball
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
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@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-tarball
path: ${{ steps.set-file-base.outputs.FILE_BASE }}.zip
diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml
index 66b1e7d..4e2d4a4 100644
--- a/.github/workflows/tarball.yml
+++ b/.github/workflows/tarball.yml
@@ -133,14 +133,14 @@ jobs:
# Save files created by release script
- name: Save tgz-tarball
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
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@v3
+ uses: actions/upload-artifact@v4
with:
name: zip-tarball
path: ${{ steps.set-file-base.outputs.FILE_BASE }}.zip