Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7331a2dc..4020e505 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: - name: Bundle grammars run: tar cJf grammars.tar.xz -C runtime/grammars/sources . - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v4 with: name: grammars path: grammars.tar.xz @@ -107,7 +107,7 @@ jobs: uses: actions/checkout@v5 - name: Download grammars - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v5 - name: Move grammars under runtime if: "!startsWith(matrix.os, 'windows')" @@ -224,7 +224,7 @@ jobs: fi cp -r runtime dist - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v4 with: name: bins-${{ matrix.build }} path: dist @@ -237,7 +237,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v5 - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v5 - name: Build archive shell: bash @@ -294,7 +294,7 @@ jobs: overwrite: true - name: Upload binaries as artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v4 if: env.preview == 'true' with: name: release |