diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cc7ed4e..3737cd9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: nix build -L ".#packages.${{ matrix.systems.nix-system }}.default" - name: Upload a Build Artifact - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4 with: # Artifact name name: ${{ matrix.systems.artifact }} diff --git a/.github/workflows/release-branches.yml b/.github/workflows/release-branches.yml index 28fdec9..1d7b0bc 100644 --- a/.github/workflows/release-branches.yml +++ b/.github/workflows/release-branches.yml @@ -31,14 +31,14 @@ jobs: - name: Create the artifacts directory run: rm -rf ./artifacts && mkdir ./artifacts - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: fh-X64-macOS path: cache-binary-X64-macOS - name: Persist the cache binary run: cp ./cache-binary-X64-macOS/fh ./artifacts/fh-X64-macOS - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: fh-X64-Linux path: cache-binary-X64-Linux diff --git a/.github/workflows/release-prs.yml b/.github/workflows/release-prs.yml index 3108366..3c7256c 100644 --- a/.github/workflows/release-prs.yml +++ b/.github/workflows/release-prs.yml @@ -35,14 +35,14 @@ jobs: - name: Create the artifacts directory run: rm -rf ./artifacts && mkdir ./artifacts - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: fh-X64-macOS path: cache-binary-X64-macOS - name: Persist the cache binary run: cp ./cache-binary-X64-macOS/fh ./artifacts/fh-X64-macOS - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: fh-X64-Linux path: cache-binary-X64-Linux diff --git a/.github/workflows/release-tags.yml b/.github/workflows/release-tags.yml index cc326f4..4bbe2bf 100644 --- a/.github/workflows/release-tags.yml +++ b/.github/workflows/release-tags.yml @@ -24,7 +24,7 @@ jobs: - name: Create the artifacts directory run: rm -rf ./artifacts && mkdir ./artifacts - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: fh-X64-macOS path: cache-binary-X64-macOS @@ -32,7 +32,7 @@ jobs: - name: Persist the cache binary run: cp ./cache-binary-X64-macOS/fh ./artifacts/fh-X64-macOS - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: fh-X64-Linux path: cache-binary-X64-Linux