Skip to content

Commit

Permalink
Artifact actions -> v4
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Jan 16, 2025
1 parent 62cfd27 commit 5d3ab89
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ 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
Expand Down

0 comments on commit 5d3ab89

Please sign in to comment.