aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-07-10 22:24:24 +0100
committerdiogo464 <[email protected]>2025-07-10 22:24:24 +0100
commitd6bf6c92db42d49319d85259912d99f91d215a3f (patch)
tree370cdb90c7633ee7f6a663ff737104c3c69e8c5c
parent0ead2c37efe34278a859edbce40e8bba7bf021fd (diff)
Fix GitHub Actions: Update artifact actions to v4
The v3 versions of upload-artifact and download-artifact are deprecated. Updated to v4 to fix the workflow. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4a040e7..d697d84 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -85,7 +85,7 @@ jobs:
85 cd ../../.. 85 cd ../../..
86 86
87 - name: Upload artifact 87 - name: Upload artifact
88 uses: actions/upload-artifact@v3 88 uses: actions/upload-artifact@v4
89 with: 89 with:
90 name: oar-p2p-${{ matrix.platform }} 90 name: oar-p2p-${{ matrix.platform }}
91 path: oar-p2p-${{ github.ref_name }}-${{ matrix.platform }}.tar.gz 91 path: oar-p2p-${{ github.ref_name }}-${{ matrix.platform }}.tar.gz
@@ -100,7 +100,7 @@ jobs:
100 uses: actions/checkout@v4 100 uses: actions/checkout@v4
101 101
102 - name: Download artifacts 102 - name: Download artifacts
103 uses: actions/download-artifact@v3 103 uses: actions/download-artifact@v4
104 with: 104 with:
105 path: artifacts 105 path: artifacts
106 106