Skip to content

Commit

Permalink
CI: not using deprecated v3 of the artifact actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Jan 23, 2025
1 parent 64bb6f9 commit 0dd9c96
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ jobs:

###############################################################################
# Collecting build artifacts...
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Rebol-CI-${{github.run_id}}
name: Rebol-CI-${{github.run_id}}-${{ matrix.runs-on }}
path: ./rebol3-*.exe

linux:
Expand Down Expand Up @@ -104,9 +104,9 @@ jobs:
# mv ./build/rebol3-bulk-x64-libc-clang ./rebol3-bulk-x64-libc-clang
# gzip -9 ./rebol3-bulk-x64-libc-clang

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Rebol-CI-${{github.run_id}}
name: Rebol-CI-${{github.run_id}}-${{ matrix.runs-on }}
path: ./rebol3-*.gz

macos:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
mv ./build/rebol3-bulk-macos-x64 ./rebol3-bulk-macos-x64
gzip -9 ./rebol3-bulk-macos-x64
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Rebol-CI-${{github.run_id}}
name: Rebol-CI-${{github.run_id}}-${{ matrix.runs-on }}
path: ./rebol3-*.gz

0 comments on commit 0dd9c96

Please sign in to comment.