Skip to content

Commit

Permalink
ci(build): Update to latest action versions
Browse files Browse the repository at this point in the history
Signed-off-by: Aditya Alok <[email protected]>
  • Loading branch information
MrAdityaAlok committed Jan 30, 2025
1 parent d0654a2 commit 24aca92
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fail-fast: false
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1000
- name: Build
Expand All @@ -55,7 +55,7 @@ jobs:
./compile.sh ./out-dir ${{ matrix.target_arch }}
- name: Store files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ghc-${{ matrix.target_arch }}
path: ./out-dir/*
Expand All @@ -70,10 +70,10 @@ jobs:
steps:
# Must perform checkout first, since it deletes the target directory
# before running, and would therefore delete the downloaded artifacts
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Create new release
env:
Expand Down

0 comments on commit 24aca92

Please sign in to comment.