From 9304944894891d654024af4783dc6ef0da03d2d9 Mon Sep 17 00:00:00 2001 From: Malte Poll <1780588+malt3@users.noreply.github.com> Date: Fri, 5 Jan 2024 15:39:51 +0100 Subject: [PATCH] ci: test download-artifacts@v4 for reproducible builds test --- .github/workflows/reproducible-builds.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/reproducible-builds.yml b/.github/workflows/reproducible-builds.yml index 3ad5e9dcae..f787942017 100644 --- a/.github/workflows/reproducible-builds.yml +++ b/.github/workflows/reproducible-builds.yml @@ -1,4 +1,4 @@ -# Build Constellation CLI and check for reproducible builds +# Build Constellation CLI + OS images and check for reproducible builds name: Reproducible Builds on: @@ -53,13 +53,13 @@ jobs: run: shasum -a 256 "${binary}" | tee "${binary}.sha256" - name: Upload binary artifact - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@v4 with: name: "binaries-${{ matrix.target }}" path: "${{ env.binary }}" - name: Upload hash artifact - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@v4 with: name: "sha256sums" path: "${{ env.binary }}.sha256" @@ -109,13 +109,13 @@ jobs: run: shasum -a 256 "${binary}" | tee "${binary}.sha256" - name: Upload binary artifact - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@v4 with: name: "osimages-${{ matrix.target }}" path: "${{ env.binary }}" - name: Upload hash artifact - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3 + uses: actions/upload-artifact@v4 with: name: "sha256sums" path: "${{ env.binary }}.sha256" @@ -138,7 +138,7 @@ jobs: ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }} - name: Download binaries - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + uses: actions/download-artifact@v4 with: name: "binaries-${{ matrix.target }}" @@ -171,7 +171,7 @@ jobs: ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }} - name: Download os images - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 + uses: actions/download-artifact@v4 with: name: "osimages-${{ matrix.target }}"