diff options
author | Michael Davis | 2023-12-21 05:09:26 +0000 |
---|---|---|
committer | GitHub | 2023-12-21 05:09:26 +0000 |
commit | 585402d9ffa1d271e7c72fbb1c90d7e9d2d51482 (patch) | |
tree | 505c3f1fe0a6bd6b7aaa9edc181f9935e8f2a263 /.github | |
parent | 5f04d09f030da0711b92894bd8dd6623135882ac (diff) |
Update upload/download-artifact actions to v4 (#9120)
Diffstat (limited to '.github')
-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 eceb57f4..b483e3af 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@v3 + - uses: actions/upload-artifact@v4 with: name: grammars path: grammars.tar.xz @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@v4 - name: Download grammars - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 - name: Move grammars under runtime if: "!startsWith(matrix.os, 'windows')" @@ -220,7 +220,7 @@ jobs: fi cp -r runtime dist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: bins-${{ matrix.build }} path: dist @@ -233,7 +233,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - name: Build archive shell: bash @@ -288,7 +288,7 @@ jobs: overwrite: true - name: Upload binaries as artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: env.preview == 'true' with: name: release |